Deallocates all the memory used for the string tables
| 219 | |
| 220 | // Deallocates all the memory used for the string tables |
| 221 | void FreeStringTables(void) { |
| 222 | DestroyStringTable(String_table, String_table_size); |
| 223 | String_table = NULL; |
| 224 | } |
| 225 | |
| 226 | const char *GetStringFromTable(int index) { |
| 227 | if ((index < 0) || (index >= String_table_size)) |
nothing calls this directly
no test coverage detected