Lines Matching refs:line
35 * of a line
38 getaline(line, maxlen, fp)
39 char *line;
47 start = line;
60 return (line);
67 * Input line is too long. Rest of the line needs to be discarded.
70 * then the next line too can be discarded.
76 * Discard the rest of the line
90 maxlen = strlen(line) + 1;
96 line[maxlen - 2] = '\n';
97 (void) fprintf(stderr, "Following line too long - remaining chars "
98 "ignored\n--- %s", line);
99 return (line);