Lines Matching refs:line
185 char* line;
189 while ((line = strtok(text, "\r\n")))
195 if (line[0] == '#')
198 if (strncmp(line, prefix, strlen(prefix)) == 0)
200 line += strlen(prefix);
202 while (*line != '/')
203 line++;
208 path = _glfw_calloc(strlen(line) + 1, 1);
212 while (*line)
214 if (line[0] == '%' && line[1] && line[2])
216 const char digits[3] = { line[1], line[2], '\0' };
218 line += 2;
221 *path = *line;
224 line++;