Lines Matching refs:ptr
232 char *ptr; in getFile() local
252 ptr = fgets(linebuf, sizeof(linebuf), fp); in getFile()
254 if (!ptr) break; in getFile()
256 while (*ptr == ' ' || *ptr=='\t') ptr++; in getFile()
257 if (*ptr == '#') { in getFile()
258 ptr++; in getFile()
259 while (*ptr == ' ' || *ptr == '\t') ptr++; in getFile()
260 word = ptr; in getFile()
263 strbuf = processInclude(fs, strbuf, ptr+8, pMaxSize, pCurSize); in getFile()
267 while (*ptr) { in getFile()
268 if (*ptr == '\n') in getFile()
270 ptr++; in getFile()
286 char *ptr; in processInclude() local
307 ptr = fname; in processInclude()
308 while (*ptr && *ptr != '"') ptr++; in processInclude()
309 if (!*ptr) { in processInclude()
313 *ptr = 0; in processInclude()
323 for (ptr = fullfname; *ptr; ptr++) { in processInclude()
324 if (*ptr == '/' || *ptr == '\\') in processInclude()
325 dirsuffix = ptr; in processInclude()