[mv] Moving trie_new_from_hash to a module

This commit is contained in:
Al
2016-01-05 16:43:17 -05:00
parent 33e9a05ebf
commit 22668945cb
5 changed files with 111 additions and 47 deletions

View File

@@ -80,7 +80,6 @@ typedef struct trie {
trie_t *trie_new_alphabet(uint8_t *alphabet, uint32_t alphabet_size);
trie_t *trie_new(void);
trie_t *trie_new_from_hash(khash_t(str_uint32) *hash);
uint32_t trie_get_char_index(trie_t *self, unsigned char c);
uint32_t trie_get_transition_index(trie_t *self, trie_node_t node, unsigned char c);