7 lines
105 B
C
7 lines
105 B
C
|
|
#include "file.h"
|
||
|
|
|
||
|
|
int feof(struct __opaque_file *stream)
|
||
|
|
{
|
||
|
|
return (stream->f_flags & FILE_EOF) != 0;
|
||
|
|
}
|