Home | History | Annotate | Download | only in util

Lines Matching full:line

121 static void substitute_line(char *line)
131 ptr = line;
176 ptr = line;
211 char line[2048];
215 memset(line, 0, sizeof(line));
216 if (fgets(line, sizeof(line), f) == NULL)
221 cp = strchr(line, '\n');
224 cp = strchr(line, '#');
230 for (cp = line + strlen(line) - 1; cp >= line; cp--) {
236 cp = line;
306 char line[2048];
368 if (fgets(line, sizeof(line), in) == NULL)
370 substitute_line(line);
371 fputs(line, out);