X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=common%2Ftst-trie.c;h=25f31c59b6315deba7cfe0ab5d2b49f89c0d9cc3;hb=8de978eb48332de45a5ad254b0475e74613fcfbd;hp=77fd208ccccabd37956e024575d36f97098074b1;hpb=8e3b07fe006abdd4316fe8adacdb6a471183a685;p=apps%2Fpfixtools.git diff --git a/common/tst-trie.c b/common/tst-trie.c index 77fd208..25f31c5 100644 --- a/common/tst-trie.c +++ b/common/tst-trie.c @@ -120,7 +120,7 @@ int main(int argc, char *argv[]) trie_insert(trie, "coucou chez vous"); trie_insert(trie, "debout !"); trie_compile(trie, false); - trie_inspect(trie); + trie_inspect(trie, true); #define ASSERT_TRUE(str) \ if (!trie_lookup(trie, str)) { \ @@ -151,7 +151,7 @@ int main(int argc, char *argv[]) */ if (argc > 1) { trie = create_trie_from_file(argv[1]); -// trie_inspect(trie); + trie_inspect(trie, false); trie_delete(&trie); } return 0;