]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/feof.c
Merged PDPCLIB and Therx code.
[pdclib.old] / functions / stdio / feof.c
index 7467465fe9298d723cc61a46e1cc668e1a1cc57b..dd19dcb4157d6a5f6837f49d7033667a75770ec9 100644 (file)
@@ -6,3 +6,9 @@
 // ----------------------------------------------------------------------------
 
 int feof( FILE * stream ) { /* TODO */ };
+
+/* PDPC code - unreviewed
+{
+    return (stream->eofInd);
+}
+*/