]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/prepwrite.c
Addressed ticket #40 (non-standard errno values).
[pdclib] / functions / _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
11 int _PDCLIB_prepwrite( struct _PDCLIB_file_t * stream )
12 {
13     if ( ( stream->bufidx < stream->bufend ) || ( stream->ungetidx > 0 ) ||
14          ( stream->status & ( _PDCLIB_FREAD | _PDCLIB_ERRORFLAG | _PDCLIB_WIDESTREAM | _PDCLIB_EOFFLAG ) ) ||
15          ! ( stream->status & ( _PDCLIB_FWRITE | _PDCLIB_FAPPEND | _PDCLIB_FRW ) ) )
16     {
17         /* Function called on illegal (e.g. input) stream.
18            See the comments on implementation-defined errno values in
19            <_PDCLIB_config.h>.
20         */
21         _PDCLIB_errno = _PDCLIB_ERROR;
22         stream->status |= _PDCLIB_ERRORFLAG;
23         return EOF;
24     }
25     stream->status |= _PDCLIB_FWRITE | _PDCLIB_BYTESTREAM;
26     return 0;
27 }
28
29 #ifdef TEST
30 #include <_PDCLIB_test.h>
31
32 int main( void )
33 {
34     /* Testing covered by ftell.c */
35     return TEST_RESULTS;
36 }
37
38 #endif
39