gates_of_skeldal/libs/string_table.h
2025-02-07 20:26:54 +01:00

18 lines
323 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
typedef struct stringtable_struct_tag TSTRINGTABLE;
TSTRINGTABLE *stringtable_load(const char *filename);
const char *stringtable_find(const TSTRINGTABLE *st, int id, const char *default_value);
void stringtable_free(TSTRINGTABLE *st);
#ifdef __cplusplus
}
#endif