blob: 954ad3bf44a0e0af89bb681e4aea0f756647f17b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef H_HASH
#define H_HASH
struct hash_table;
typedef struct hash_table * hashTable;
struct ht_iterator {
int bucket;
int item;
};
typedef struct ht_iterator htIterator;
struct hash_table *htNewTable(int size);
void htFreeHashTable(struct hash_table *ht);
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 htPrintHashStats(struct hash_table *t);
int htNumEntries(struct hash_table *t);
void htRemoveFromTable(struct hash_table *t, const char * dir,
const char * base);
/* these use static storage */
void htIterStart(htIterator * iter);
int htIterGetNext(struct hash_table * t, htIterator * iter,
const char ** dir, const char ** base);
#endif
|