File trie.h

Included in: abnff.h
  trie.c

Type struct trie_node

struct trie_node
struct trie_node 
   { 
     void* item; 
     unsigned long b; 
     struct trie_node* l; 
     struct trie_node* r; 
   } 

Type struct trie_dict

struct trie_dict
struct trie_dict 
   { 
     struct trie_node* root; 
     const char* (*key)(const void*); 
   }