C 언어

feof

SpeeDr00t 2016. 7. 9. 11:10
반응형

int

feof(FILE *fp)


#include <stdio.h>

/*
 * A subroutine version of the macro feof.
 */
#undef feof

int
feof(FILE *fp)
{
	return (__sfeof(fp));
}
반응형