Lines Matching refs:fptr
36 FILE *fptr = fopen("putc_0100.txt", "w"); in putc_0100() local
37 if (!fptr) { in putc_0100()
38 EXPECT_PTRNE("putc_0100", fptr, NULL); in putc_0100()
41 EXPECT_PTRNE("putc_0100", fptr, NULL); in putc_0100()
42 EXPECT_EQ("putc_0100", putc('p', fptr), PUTC_RET); in putc_0100()
43 ret = fclose(fptr); in putc_0100()
60 FILE *fptr = fopen("putc_0200.txt", "r"); in putc_0200() local
61 if (!fptr) { in putc_0200()
62 EXPECT_PTRNE("putc_0200", fptr, NULL); in putc_0200()
65 EXPECT_EQ("putc_0200", putc('p', fptr), EOF); in putc_0200()
66 ret = fclose(fptr); in putc_0200()