Trie implementation in C89 for generating text. https://git.ari.lt/ari/libtrie
Find a file
Ari Archer f71cc72b85
2: Fix checking of NULL pointer in Trie.
Signed-off-by: Ari Archer <ari@ari.lt>
2024-06-02 06:29:47 +03:00
src 2: Fix checking of NULL pointer in Trie. 2024-06-02 06:29:47 +03:00
tests Improve code. Final v1 release. 2024-05-29 19:22:57 +03:00
.clang-format init 2024-05-28 05:31:22 +03:00
.editorconfig init 2024-05-28 05:31:22 +03:00
.gitignore remove .so 2024-05-28 05:32:24 +03:00
Makefile Improve code. Final v1 release. 2024-05-29 19:22:57 +03:00
README.md init 2024-05-28 05:31:22 +03:00
UNLICENSE init 2024-05-28 05:31:22 +03:00

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 :)