Lines Matching refs:fptr
31 FILE *fptr = fopen(path, "w+"); in ftell_0100() local
32 if (!fptr) { in ftell_0100()
36 size_t ret = fwrite(wrstring, sizeof(char), strlen(wrstring), fptr); in ftell_0100()
41 int fret = fseek(fptr, 0L, SEEK_SET); in ftell_0100()
46 long result = ftell(fptr); in ftell_0100()
51 fclose(fptr); in ftell_0100()
62 FILE *fptr = fopen(path, "w+"); in ftell_0200() local
63 if (!fptr) { in ftell_0200()
67 size_t ret = fwrite(wrstring, sizeof(char), strlen(wrstring), fptr); in ftell_0200()
72 int fret = fseek(fptr, 8L, SEEK_SET); in ftell_0200()
77 long result = ftell(fptr); in ftell_0200()
82 fclose(fptr); in ftell_0200()
93 FILE *fptr = fopen(path, "w+"); in ftell_0300() local
94 if (!fptr) { in ftell_0300()
98 size_t ret = fwrite(wrstring, sizeof(char), strlen(wrstring), fptr); in ftell_0300()
103 int fret = fseek(fptr, 0L, SEEK_END); in ftell_0300()
107 long result = ftell(fptr); in ftell_0300()
112 fclose(fptr); in ftell_0300()