Add very simple add-only persistence model
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Jef Roosens 2022-11-15 22:49:36 +01:00
parent 919976073f
commit 9c3af74e1b
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
4 changed files with 89 additions and 1 deletions

View file

@ -24,6 +24,8 @@ typedef struct ttrie TernaryTrie;
*/
TernaryTrie* ternarytrie_init();
void ternarytrie_populate(TernaryTrie* trie, const char* file_path);
/**
* De-allocate a trie by freeing the memory occupied by this trie.
*