Frédéric Lécaille | 4a3fef8 | 2019-05-28 14:47:17 +0200 | [diff] [blame] | 1 | #ifndef _PROTO_DICT_H |
2 | #define _PROTO_DICT_H | ||||
3 | |||||
4 | #include <types/dict.h> | ||||
5 | |||||
6 | struct dict *new_dict(const char *name); | ||||
7 | struct dict_entry *dict_insert(struct dict *d, char *str); | ||||
8 | |||||
9 | #endif /* _PROTO_DICT_H */ |