Home | History | Annotate | Download | only in compiler

Lines Matching defs:fp

18         fp(NULL),
21 if ((fp = fopen(fileName, "r")) == NULL)
23 char c = getc(fp);
27 c = getc(fp);
31 rewind(fp);
34 c = getc(fp);
37 c = getc(fp);
46 if (fp != NULL)
47 fclose(fp);
52 FILE *fp;