Lines Matching refs:ptr
239 char *ptr; in getFile() local
259 ptr = fgets(linebuf, sizeof(linebuf), fp); in getFile()
261 if (!ptr) break; in getFile()
263 while (*ptr == ' ' || *ptr=='\t') ptr++; in getFile()
264 if (*ptr == '#') { in getFile()
265 ptr++; in getFile()
266 while (*ptr == ' ' || *ptr == '\t') ptr++; in getFile()
267 word = ptr; in getFile()
270 strbuf = processInclude(fs, strbuf, ptr+8, pMaxSize, pCurSize); in getFile()
274 while (*ptr) { in getFile()
275 if (*ptr == '\n') in getFile()
277 ptr++; in getFile()
293 char *ptr; in processInclude() local
314 ptr = fname; in processInclude()
315 while (*ptr && *ptr != '"') ptr++; in processInclude()
316 if (!*ptr) { in processInclude()
320 *ptr = 0; in processInclude()
330 for (ptr = fullfname; *ptr; ptr++) { in processInclude()
331 if (*ptr == '/' || *ptr == '\\') in processInclude()
332 dirsuffix = ptr; in processInclude()