]> pd.if.org Git - pdclib/blob - functions/stdio/feof.c
dd19dcb4157d6a5f6837f49d7033667a75770ec9
[pdclib] / functions / stdio / feof.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 int feof( FILE * stream ) { /* TODO */ };
9
10 /* PDPC code - unreviewed
11 {
12     return (stream->eofInd);
13 }
14 */