lander/src/trie/trie_entry.h

8 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);