about summary refs log tree commit diff stats
path: root/src/include/dictionnary.h
blob: e2ec14666b03e698e5951a076eb6d21a7c17c72b (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 FreeDictionnary(dic_t **dic);

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

#endif //__DICTIONNARY_H_