Lines Matching refs:fp
24 FILE * fp;27 fp = fopen(file, "r");28 if (fp == NULL)31 if (fscanf(fp, "%d", &value) != 1) {32 fclose(fp);36 fclose(fp);44 FILE * fp;61 fp = fopen(file, "w");62 if (!fp)65 fprintf(fp, "%d", getpid());66 fclose(fp);