Changes in uspace/lib/c/generic/private/stdio.h [bc56f30:4805495] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/stdio.h
rbc56f30 r4805495 40 40 #include <async.h> 41 41 #include <stddef.h> 42 #include <offset.h>43 42 44 43 /** Maximum characters that can be pushed back by ungetc() */ … … 55 54 int (*flush)(FILE *stream); 56 55 } __stream_ops_t; 57 58 enum __buffer_state {59 /** Buffer is empty */60 _bs_empty,61 62 /** Buffer contains data to be written */63 _bs_write,64 65 /** Buffer contains prefetched data for reading */66 _bs_read67 };68 56 69 57 struct _IO_FILE { … … 99 87 100 88 /** Buffering type */ 101 enum _ _buffer_type btype;89 enum _buffer_type btype; 102 90 103 91 /** Buffer */ … … 108 96 109 97 /** Buffer state */ 110 enum _ _buffer_state buf_state;98 enum _buffer_state buf_state; 111 99 112 100 /** Buffer I/O pointer */
Note:
See TracChangeset
for help on using the changeset viewer.