blob: f9245d069a74bf4c8701054cd31c1338630eb847 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "stddef.h" // for NULL
#include <__stdio.h> // for __FILE
#include <stdio.h> // for FILE, feof
int feof(FILE *stream)
{
if (stream == NULL)
return 0;
return (__FILE(stream))->eof;
}
|