Changeset 9be1d58 in mainline


Ignore:
Timestamp:
2009-04-03T08:01:08Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b60c582
Parents:
c583970
Message:

do not mention UTF specifically

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/printf/printf_core.h

    rc583970 r9be1d58  
    4141/** Structure for specifying output methods for different printf clones. */
    4242typedef struct {
    43         /* UTF-8 output function, returns number of printed UTF-8 characters 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 *);
    4545       
    46         /* UTF-32 output function, returns number of printed UTF-32 characters or EOF */
    47         int (*write_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 *);
    4848       
    4949        /* User data - output stream specification, state, locks, etc. */
Note: See TracChangeset for help on using the changeset viewer.