]> pd.if.org Git - pdclib/blobdiff - functions/stdio/feof.c
Reviewed / implemented.
[pdclib] / functions / stdio / feof.c
index 7467465fe9298d723cc61a46e1cc668e1a1cc57b..93203d0dff0e14cd6e97f1c56f5cd3f3f560be48 100644 (file)
@@ -5,4 +5,12 @@
 // This code is Public Domain. Use, modify, and redistribute at will.
 // ----------------------------------------------------------------------------
 
-int feof( FILE * stream ) { /* TODO */ };
+#ifndef __FILE_H
+#define __FILE_H __FILE_H
+#include <__FILE.h>
+#endif // __FILE_H
+
+int feof( FILE * fh )
+{
+    return fh->EOFIndicator;
+}