X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffeof.c;h=dd19dcb4157d6a5f6837f49d7033667a75770ec9;hb=e5456e3c2697c4e17fc9aa3439f2e305517b4d96;hp=7467465fe9298d723cc61a46e1cc668e1a1cc57b;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old diff --git a/functions/stdio/feof.c b/functions/stdio/feof.c index 7467465..dd19dcb 100644 --- a/functions/stdio/feof.c +++ b/functions/stdio/feof.c @@ -6,3 +6,9 @@ // ---------------------------------------------------------------------------- int feof( FILE * stream ) { /* TODO */ }; + +/* PDPC code - unreviewed +{ + return (stream->eofInd); +} +*/