#include <stddef.h>
Go to the source code of this file.
Classes | |
| struct | NAMED |
| struct | HASH_TABLE |
| struct | HASH_TABLE_ITER |
Typedefs | |
| typedef const char * | KEY |
Functions | |
| NAMED * | lookup (HASH_TABLE *table, KEY name, size_t createSize) |
| void | hashTableInit (HASH_TABLE *) |
| void | hashTableDestroy (HASH_TABLE *) |
| void | hashTableIterInit (HASH_TABLE_ITER *, const HASH_TABLE *) |
| NAMED * | hashTableIterNext (HASH_TABLE_ITER *) |
| typedef const char* KEY |
Definition at line 28 of file hashtable.h.
| void hashTableDestroy | ( | HASH_TABLE * | ) |
| void hashTableInit | ( | HASH_TABLE * | ) |
| void hashTableIterInit | ( | HASH_TABLE_ITER * | , |
| const HASH_TABLE * | |||
| ) |
| NAMED* hashTableIterNext | ( | HASH_TABLE_ITER * | ) |
| NAMED* lookup | ( | HASH_TABLE * | table, |
| KEY | name, | ||
| size_t | createSize | ||
| ) |