3 * $Log: stringPool.h,v $
4 * Revision 1.1 1994/01/25 20:49:42 hollings
5 * First real version of utility library.
7 * Revision 1.1 1992/08/03 20:45:54 hollings
16 typedef char *stringHandle;
18 #define TAB_SIZE 10004
19 #define PAGE_SIZE 4090
21 typedef struct _stringEntry {
23 struct _stringEntry *next;
29 stringHandle find(char *);
30 stringHandle findAndAdd(char *);
32 stringEntry *table[TAB_SIZE];
34 stringHandle currPage;
36 stringHandle getSpace(int);
39 #endif /* STRINGPOOL_H */