Lines Matching defs:fptr
34 FILE *fptr = fopen(ptr, "w");
36 fprintf(fptr, "%s", "this is a sample!");
37 int freturn = ftruncate(fileno(fptr), 0);
41 fclose(fptr);
43 fptr = NULL;
56 FILE *fptr = fopen(ptr, "w");
58 fprintf(fptr, "%s", "this is a sample!");
59 int freturn = ftruncate(fileno(fptr), 10);
63 fclose(fptr);
65 fptr = NULL;
77 FILE *fptr = fopen(ptr, "w");
79 fprintf(fptr, "%s", "this is a sample!");
80 int freturn = ftruncate(fileno(fptr), 100);
84 fclose(fptr);
86 fptr = NULL;
98 FILE *fptr = fopen(ptr, "w");
99 fprintf(fptr, "%s", "this is a sample!");
102 fclose(fptr);
104 fptr = NULL;