group_entry
lookup(struct group_entry **table, const char *key)
struct group_entry *cur;
store(struct group_entry *table[], const char *key, const char *data)
struct group_entry *new;
new = (struct group_entry *)malloc(sizeof(struct group_entry));
struct group_entry *next;
char *lookup(struct group_entry **, const char *);
void store(struct group_entry **, const char *, const char *);
extern struct group_entry *gtable[];
struct group_entry *gtable[TABLESIZE];
struct group_entry *gcur;