X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffeof.c;fp=functions%2Fstdio%2Ffeof.c;h=dd19dcb4157d6a5f6837f49d7033667a75770ec9;hb=0a5395faab237ba9008352b0f4bee9659bbd3d5f;hp=7467465fe9298d723cc61a46e1cc668e1a1cc57b;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec;p=pdclib 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); +} +*/