mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
10 lines
199 B
C
10 lines
199 B
C
|
|
#ifndef _PROTO_DICT_H
|
||
|
|
#define _PROTO_DICT_H
|
||
|
|
|
||
|
|
#include <types/dict.h>
|
||
|
|
|
||
|
|
struct dict *new_dict(const char *name);
|
||
|
|
struct dict_entry *dict_insert(struct dict *d, char *str);
|
||
|
|
|
||
|
|
#endif /* _PROTO_DICT_H */
|