Lines Matching defs:table
31 #include "table.h"
36 * Hash table manager. Store/lookup strings, keyed by string
40 * Generate the key into the table using the first two letters
41 * of "str". The table is alphabetized, with no distinction between
65 store(table, key, datum)
66 stringtable table;
74 cur = table[index];
80 table[index] = new;
85 lookup(table, key)
86 stringtable table;
91 cur = table[tablekey(key)];