]> git.cworth.org Git - wordgame/blobdiff - dict-impl.h
Add printing to dict interface. Breakup grid prints by letter count.
[wordgame] / dict-impl.h
index 030df6fd2f071a82b62e37eec022c04c648bcf11..78aab1c897b7b1e25f84c610cbcae98dba5f23b7 100644 (file)
@@ -53,7 +53,6 @@ void
 chomp (char *s);
 
 #define TRIE_FLAGS_IS_WORD     (1<<0)
-#define TRIE_FLAGS_SEEN                (1<<1)
 
 typedef struct _trie {
     uint32_t flags;
@@ -77,10 +76,4 @@ trie_t *
 trie_find (trie_t      *trie,
           const char   *word_chunk);
 
-int
-trie_print_seen (trie_t *trie, string_t *word);
-
-int
-trie_print_unseen (trie_t *trie, string_t *word);
-
 #endif /* _DICT_IMPL_H_ */