Lines Matching refs:the_line
307 tokenize (char *the_line, char **the_words, int nwords) in tokenize() argument
314 while (*the_line && isspace (*the_line)) in tokenize()
315 ++the_line; in tokenize()
318 if (*the_line == 0) in tokenize()
323 *the_words = the_line; in tokenize()
329 while (*the_line && ! isspace (*the_line)) in tokenize()
330 ++the_line; in tokenize()
333 if (*the_line == 0) in tokenize()
337 *the_line++ = 0; in tokenize()
912 char *the_line = NULL; in main() local
938 while (getline (&the_line, &line_len, f) > 0) in main()
940 int nt = tokenize (the_line, the_words, 3); in main()