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_