blob: 26f48decb48dc3437b161eb41826446802851627 [file] [log] [blame]
Frédéric Lécaille4a3fef82019-05-28 14:47:17 +02001#ifndef _PROTO_DICT_H
2#define _PROTO_DICT_H
3
4#include <types/dict.h>
5
6struct dict *new_dict(const char *name);
7struct dict_entry *dict_insert(struct dict *d, char *str);
8
9#endif /* _PROTO_DICT_H */