Lines Matching defs:line
30 static char *ini_get_line(char *s, int size, FILE *stream, int *line,
39 /* Skip white space from the beginning of line. */
78 (*line)++;
93 static int split_line(char *line, char **name, char **value)
95 char *pos = line;
99 fprintf(stderr, "Wrong format of line\n");
1050 int line = 0;
1053 while (ini_get_line(buf, sizeof(buf), f, &line, &pos)) {
1085 int ret = 0, line = 0;
1102 while (ini_get_line(buf, sizeof(buf), f, &line, &pos)) {
1103 ret = ini_parse_line(pos, line, cmn);