Home | History | Annotate | Download | only in pppd

Lines Matching full:word

535 	opt = find_option(w->word);
538 w->word);
548 w0->word);
551 argv[i] = w->word;
553 if (!process_option(opt, w0->word, argv))
1104 * Read a word from a file.
1110 getword(f, word, newlinep, filename)
1112 char *word;
1155 * If this character is escaped, we have a word start.
1177 * A non-whitespace character is the start of a word.
1193 * Process characters until the end of the word.
1274 word[len] = value;
1284 * Not escaped: see if we've reached the end of the word.
1306 * An ordinary character: store it in the word and get another.
1309 word[len] = c;
1316 * End of the word: check for errors.
1326 * If len is zero, then we didn't find a word before the
1334 * Warn if the word was too long, and append a terminating null.
1337 option_error("warning: word in file %s too long (%.20s...)",
1338 filename, word);
1341 word[len] = 0;