Lines Matching refs:line
78 static void getword(char *word, char *line, char stop)
82 for (x = 0; ((line[x]) && (line[x] != stop)); x++)
83 word[x] = line[x];
86 if (line[x])
90 while ((line[y++] = line[x++]));
194 char line[3 * MAX_STRING_LEN];
258 while (!(get_line(line, sizeof(line), f))) {
259 if (found || (line[0] == '#') || (!line[0])) {
260 putline(tfp, line);
263 strcpy(l, line);
267 putline(tfp, line);