Changes in uspace/lib/c/generic/private/stdio.h [9d58539:bd5414e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/stdio.h
r9d58539 rbd5414e 40 40 #include <async.h> 41 41 42 /** Maximum characters that can be pushed back by ungetc() */ 43 #define UNGETC_MAX 1 44 42 45 struct _IO_FILE { 43 46 /** Linked list pointer. */ … … 53 56 int eof; 54 57 55 /** K logindicator */56 int k log;58 /** KIO indicator */ 59 int kio; 57 60 58 61 /** Session to the file provider */ … … 82 85 /** Points to end of occupied space when in read mode. */ 83 86 uint8_t *buf_tail; 87 88 /** Pushed back characters */ 89 uint8_t ungetc_buf[UNGETC_MAX]; 90 91 /** Number of pushed back characters */ 92 int ungetc_chars; 84 93 }; 85 94
Note:
See TracChangeset
for help on using the changeset viewer.