|
clibs
Tiny but handy utility libraries for C
|
Constant C string hash table. More...
Go to the source code of this file.
Macros | |
| #define | FALSE 0 |
| #define | TRUE 1 |
| #define | _BOOL_IS_DEFINED |
Typedefs | |
| typedef char | BOOL |
| typedef struct hash_table_t | hash_table_t |
Functions | |
| hash_table_t * | hash_table_new (void) |
| BOOL | hash_table_add (hash_table_t *self, const char *key, const char *value) |
| const char * | hash_table_get (hash_table_t *self, const char *key) |
| BOOL | hash_table_remove (hash_table_t *self, const char *key) |
| void | hash_table_delete (hash_table_t *self) |
Constant C string hash table.