Home | History | Annotate | Download | only in libskey

Lines Matching defs:word

25 static void standard(char *word);
29 /* Dictionary for integer-word translations */
2059 "WORD",
2117 * 0 word not in data base
2118 * -1 badly formed in put ie > 4 char word
2123 char *word;
2137 if ((word = strtok_r(i == 0 ? input : NULL, " ", &last)) == NULL)
2140 l = strlen (word);
2153 standard (word);
2155 if ((v = wsrch (word, low, high)) < 0)
2204 /* Internal subroutines for word encoding/decoding */
2268 static void standard(char *word)
2270 while (*word)
2272 if (!isascii (*word))
2274 if (islower ((unsigned char)*word))
2275 *word = toupper ((unsigned char)*word);
2276 if (*word == '1')
2277 *word = 'L';
2278 if (*word == '0')
2279 *word = 'O';
2280 if (*word == '5')
2281 *word = 'S';
2282 word++;