Changeset 9be1d58 in mainline
- Timestamp:
- 2009-04-03T08:01:08Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b60c582
- Parents:
- c583970
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/printf/printf_core.h
rc583970 r9be1d58 41 41 /** Structure for specifying output methods for different printf clones. */ 42 42 typedef struct { 43 /* UTF-8 output function, returns number of printed UTF-8characters or EOF */44 int (* write_utf8)(const char *, size_t, void *);43 /* String output function, returns number of printed characters or EOF */ 44 int (*str_write)(const char *, size_t, void *); 45 45 46 /* UTF-32 output function, returns number of printed UTF-32characters or EOF */47 int (*w rite_utf32)(const wchar_t *, size_t, void *);46 /* Wide string output function, returns number of printed characters or EOF */ 47 int (*wstr_write)(const wchar_t *, size_t, void *); 48 48 49 49 /* User data - output stream specification, state, locks, etc. */
Note:
See TracChangeset
for help on using the changeset viewer.