Home | History | Annotate | Download | only in compiler

Lines Matching defs:fp

26 		fp(nullptr),
29 if ((fp = fopen(fileName, "r")) == NULL)
31 char c = getc(fp);
35 c = getc(fp);
39 rewind(fp);
42 c = getc(fp);
45 c = getc(fp);
54 if (fp != NULL)
55 fclose(fp);
60 FILE *fp;