Home | History | Annotate | Download | only in util

Lines Matching defs:Words

71 static ULIST *Words = NULL;
79 if (Words == NULL)
84 err = uListInit(&Words, 40000, 0);
90 fp = fopen ("/usr/dict/words", "r");
92 fp = fopen ("/usr/share/dict/words", "r");
94 ne_warn("Unable to find dict/words file (looked in /usr/dict/words and /usr/share/dict/words)");
103 uListAppend(Words, strdup(buf));
107 x = neo_rand (uListLength(Words));
108 uListGet(Words, x, (void *)&word);