]> pd.if.org Git - pdclib/blob - functions/stdio/_PDCLIB_prepwrite.c
Rename all files to match their primary symbol (avoids file conflicts in library...
[pdclib] / functions / stdio / _PDCLIB_prepwrite.c
1 /* $Id$ */
2
3 /* _PDCLIB_prepwrite( 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 #include <errno.h>
11
12 #ifndef REGTEST
13 int _PDCLIB_prepwrite( struct _PDCLIB_file_t * stream )
14 {
15     if ( ( stream->bufidx < stream->bufend ) || ( stream->ungetidx > 0 ) ||
16          ( stream->status & ( _PDCLIB_FREAD | _PDCLIB_ERRORFLAG | _PDCLIB_WIDESTREAM | _PDCLIB_EOFFLAG ) ) ||
17          ! ( stream->status & ( _PDCLIB_FWRITE | _PDCLIB_FAPPEND | _PDCLIB_FRW ) ) )
18     {
19         /* Function called on illegal (e.g. input) stream.
20            See the comments on implementation-defined errno values in
21            <_PDCLIB_config.h>.
22         */
23         errno = EINVAL;
24         stream->status |= _PDCLIB_ERRORFLAG;
25         return EOF;
26     }
27     stream->status |= _PDCLIB_FWRITE | _PDCLIB_BYTESTREAM;
28     return 0;
29 }
30 #endif
31
32 #ifdef TEST
33 #include <_PDCLIB_test.h>
34
35 int main( void )
36 {
37     /* Testing covered by ftell.c */
38     return TEST_RESULTS;
39 }
40
41 #endif
42