From 78eefa4b5a74690a537fc725b4de2224548a0826 Mon Sep 17 00:00:00 2001 From: dol-sen Date: Wed, 5 Oct 2011 13:50:03 -0700 Subject: move everything to prep for a merge into layman. --- c-layman/src/dict.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 c-layman/src/dict.h (limited to 'c-layman/src/dict.h') diff --git a/c-layman/src/dict.h b/c-layman/src/dict.h new file mode 100644 index 0000000..86cbbb3 --- /dev/null +++ b/c-layman/src/dict.h @@ -0,0 +1,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 -- cgit v1.2.3-1-g7c22