Lines Matching defs:line
291 static int parse_line(char *line)
317 /* Skip comments and NULL line */
318 if (line[0] == '#' || line[0] == '\n')
321 strncpy(buffer, line, 511);
343 /* Skip line parsing for non-existing indexes */
392 printf("Warning: wrong line format:\n");
393 printf("\tline[%d]: %s\n", flines, line);
401 char *filename, *line = NULL;
421 ret = getline(&line, &len, file);
424 parse_line(line);