aboutsummaryrefslogtreecommitdiff
blob: 86cbbb36f0a98a90e3036845131c8341497b2977 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef DICT_H
#define DICT_H

typedef struct Dict Dict;

Dict*		dictCreate();
//char*		tableFind(Dict *table, char* key);
void		dictFree(Dict *t);
void		dictInsert(Dict* list, const char* key, const char* value);
unsigned int	dictCount(Dict *table);
#endif