Implement a trie, sans removal.

This commit is contained in:
2018-03-24 02:01:39 -07:00
parent 77123561f0
commit 7afe1a37e4
3 changed files with 156 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ project(libabacus)
add_compile_options(-pedantic -Wall)
add_library(abacus STATIC src/lexer.c src/util.c src/table.c src/parser.c src/libabacus.c src/tree.c src/debug.c src/parsetype.c src/reserved.c)
add_library(abacus STATIC src/lexer.c src/util.c src/table.c src/parser.c src/libabacus.c src/tree.c src/debug.c src/parsetype.c src/reserved.c src/trie.c)
add_executable(libabacus src/main.c)
add_subdirectory(external/liblex)