Lines Matching defs:line
81 char *line = NULL;
108 while ((len = getline (&line, &line_len, f)) > 0)
113 if (line[len - 1] == '\n')
114 line[--len] = '\0';
116 puts (line);
118 if (line[0] == ';')
121 if (line[0] == '\0')
124 if (line[0] == '-')
126 if (strstr (line, "REG_BASIC"))
130 if (strstr (line, "REG_ICASE"))
132 if (strstr (line, "REG_NEWLINE"))
135 if (strstr (line, "REG_NOTBOL"))
137 if (strstr (line, "REG_NOTEOL"))
142 pattern = line + strspn (line, " \t");
232 free (line);