Trie implementation in C89 for generating text.
https://git.ari.lt/ari/libtrie
|
||
---|---|---|
src | ||
tests | ||
.clang-format | ||
.editorconfig | ||
.gitignore | ||
Makefile | ||
README.md | ||
UNLICENSE |
Libtrie
Trie implementation in C89 for generating text.
See src/main.c
for example usage. You may compile it using make
:
make -j$(nproc --all)
LD_LIBRARY_PATH="$(pwd)" ./trie
Licensing: Public domain
To test simply run make test
:)