]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/prepread.c
ef2f70ed72bcda6962745d0b1d053a7c0000e7bf
[pdclib] / functions / _PDCLIB / prepread.c
1 /* $Id$ */
2
3 /* _PDCLIB_prepread( struct _PDCLIB_file_t * )
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #include <stdio.h>
10
11 #define _PDCLIB_GLUE_H _PDCLIB_GLUE_H
12 #include <_PDCLIB_glue.h>
13
14 int _PDCLIB_prepread( struct _PDCLIB_file_t * stream )
15 {
16     if ( ( stream->bufidx > stream->bufend ) ||
17          ( stream->status & ( _PDCLIB_FWRITE | _PDCLIB_FAPPEND | _PDCLIB_ERRORFLAG | _PDCLIB_WIDESTREAM | _PDCLIB_EOFFLAG ) ) ||
18          ! ( stream->status & ( _PDCLIB_FREAD | _PDCLIB_FRW ) ) )
19     {
20         _PDCLIB_errno = _PDCLIB_EIO;
21         stream->status |= _PDCLIB_ERRORFLAG;
22         return EOF;
23     }
24     stream->status |= _PDCLIB_FREAD | _PDCLIB_BYTESTREAM;
25     if ( ( stream->bufidx == stream->bufend ) && ( stream->ungetidx == 0 ) )
26     {
27         return _PDCLIB_fillbuffer( stream );
28     }
29     else
30     {
31         return 0;
32     }
33 }
34
35 #ifdef TEST
36 #include <_PDCLIB_test.h>
37
38 int main( void )
39 {
40     /* Testing covered by ftell.c */
41     return TEST_RESULTS;
42 }
43
44 #endif
45