lib: c: io: implement standard FILE and DIR interfaces
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
#include "file.h"
|
||||
|
||||
int feof(struct __opaque_file *stream)
|
||||
{
|
||||
return (stream->f_flags & FILE_EOF) != 0;
|
||||
}
|
||||
Reference in New Issue
Block a user