Lines Matching defs:string_table
106 char *string_table;
107 int next_free; /* next free character in string_table */
108 unsigned int table_size = 0; /* current string_table size */
259 * save names in string_table
271 * save string in string_table
536 strcpy(name_list, term_names + string_table);
565 (unsigned)term_names + string_table);
638 string_table);
683 namelist = term_names + string_table;
729 fwrite(string_table, sizeof (char), l_next_free, fp)
740 * copy string into next free part of string_table, doing a realloc()
742 * string_table.
759 if ((string_table = malloc(1024)) == NULL)
767 if ((string_table = realloc(string_table, table_size + 1024))
774 strcpy(&string_table[next_free], string);