about summary refs log tree commit diff stats
path: root/src/include/dictionnary.h
blob: efa5e1ccc7a588e1fd1f18199c128a3d9bc3bc3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __DICTIONNARY_H_
#define __DICTIONNARY_H_
#include <stdint.h>

typedef void dic_t;

dic_t *NewDictionnary(void);
void FreeDictionnary(dic_t **dic);

const char* AddDictionnary(dic_t* dic, const char* s);
int ExistDictionnary(dic_t* dic, const char* s);

#endif //__DICTIONNARY_H_