3 /* _PDCLIB_prepwrite( FILE * )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
13 #include <_PDCLIB_io.h>
15 int _PDCLIB_prepwrite( FILE * stream )
17 if ( ( stream->bufidx < stream->bufend ) || ( stream->ungetidx > 0 ) ||
18 ( stream->status & ( _PDCLIB_FREAD | _PDCLIB_ERRORFLAG | _PDCLIB_WIDESTREAM | _PDCLIB_EOFFLAG ) ) ||
19 ! ( stream->status & ( _PDCLIB_FWRITE | _PDCLIB_FAPPEND | _PDCLIB_FRW ) ) )
21 /* Function called on illegal (e.g. input) stream.
22 See the comments on implementation-defined errno values in
26 stream->status |= _PDCLIB_ERRORFLAG;
29 stream->status |= _PDCLIB_FWRITE | _PDCLIB_BYTESTREAM;
35 #include <_PDCLIB_test.h>
39 /* Testing covered by ftell.c */