Dillo v3.1.1-46-g8a360e32
Loading...
Searching...
No Matches
trie.cc
Go to the documentation of this file.
1#include "dw/hyphenator.hh"
2
3int main (int argc, char *argv[])
4{
5 if (argc < 2) {
6 fprintf(stderr, "Usage: trie <pattern file>\n");
7 exit (1);
8 }
9
10 /* Use pack = 1024 to create a really small trie - can take a while.
11 */
12 dw::Hyphenator hyphenator (argv[1], NULL, 1024);
13 hyphenator.saveTrie (stdout);
14}
int main(void)
Definition bookmarks.c:1613
void saveTrie(FILE *fp)