Release bumped to "gts4".
[tac_plus.git] / hash.h
1 #ifndef HASH_H
2 #define HASH_H 1
3
4 #include "tac_plus.h"
5
6
7 #define HASH_TAB_SIZE 157        /* user and group hash table sizes */
8
9 typedef struct entry ENTRY;
10
11
12 extern void *hash_lookup TAC_ARGS((void **hashtab, const char *name));
13 extern void *hash_add_entry TAC_ARGS((void **hashtab, ENTRY *newentry));
14 extern void **hash_get_entries TAC_ARGS((void **hashtab));
15
16
17 #endif /* HASH_H */