Data Structures |
| struct | bucket |
| struct | filePath |
| struct | hash_table |
Defines |
| #define | CHUNK 1 |
Functions |
| struct hash_table* | htNewTable (int size) |
| void | htFreeHashTable (struct hash_table *ht) |
| void | htHashStats (const struct hash_table *t) |
| unsigned int | htHashStrings (const char *s, const char *t) |
| int | in_table_aux (struct hash_table *t, int hash, const char *dir, const char *base) |
| int | htInTable (struct hash_table *t, const char *dir, const char *base) |
| void | htAddToTable (struct hash_table *t, const char *dir, const char *base) |
| void | htRemoveFromTable (struct hash_table *t, const char *dir, const char *base) |
| int | htNumEntries (struct hash_table *t) |
| void | htIterStart (htIterator *iter) |
| int | htIterGetNext (struct hash_table *t, htIterator *iter, const char **dir, const char **base) |