7 lines
154 B
C
7 lines
154 B
C
#include "trie.h"
|
|
|
|
EntryType entry_type_from_char(char c);
|
|
|
|
char entry_type_to_char(EntryType et);
|
|
|
|
Entry *entry_new(EntryType type, const char *string);
|