Changes in uspace/lib/c/generic/private/stdio.h [bd5414e:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/stdio.h
rbd5414e r9d58539 40 40 #include <async.h> 41 41 42 /** Maximum characters that can be pushed back by ungetc() */43 #define UNGETC_MAX 144 45 42 struct _IO_FILE { 46 43 /** Linked list pointer. */ … … 56 53 int eof; 57 54 58 /** K IOindicator */59 int k io;55 /** Klog indicator */ 56 int klog; 60 57 61 58 /** Session to the file provider */ … … 85 82 /** Points to end of occupied space when in read mode. */ 86 83 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;93 84 }; 94 85
Note:
See TracChangeset
for help on using the changeset viewer.