diff options
Diffstat (limited to 'zix/trie.c')
-rw-r--r-- | zix/trie.c | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -16,7 +16,13 @@ #define _XOPEN_SOURCE 500 +#include "zix/trie.h" + +#include "zix/common.h" +#include "zix/trie_util.h" + #include <assert.h> +#include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> @@ -24,10 +30,6 @@ // #define ZIX_TRIE_LINEAR_SEARCH 1 -#include "zix/common.h" -#include "zix/trie.h" -#include "zix/trie_util.h" - //typedef uint_fast8_t n_edges_t; typedef uintptr_t n_edges_t; |