Lines Matching full:line
61 static int config_parse_line(char *line)
67 c = strchr(line, '#');
71 if (strspn(line, " \t") == strlen(line))
74 c = strchr(line, '=');
78 key = line;
97 char *line = buffer;
101 for (c = 1; line != NULL; c++) {
102 line = strtok_r(str, "\r\n", &saveptr);
103 if (line != NULL) {
104 D(VERBOSE, "'%s'", line);
105 ret = config_parse_line(line);
107 D(WARN, "error parsing " CONFIG_PATH " line %d", c);