Changeset f2b8cdc in mainline for kernel/generic/src/lib/string.c


Ignore:
Timestamp:
2009-04-04T22:04:28Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b27eb71
Parents:
4527fb5
Message:

Copy printf with Unicode support to userspace.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/lib/string.c

    r4527fb5 rf2b8cdc  
    207207 *         code was invalid.
    208208 */
    209 int chr_encode(const wchar_t ch, char *str, size_t *offset, size_t size)
     209int chr_encode(wchar_t ch, char *str, size_t *offset, size_t size)
    210210{
    211211        if (*offset >= size)
     
    423423 *
    424424 */
    425 bool ascii_check(const wchar_t ch)
     425bool ascii_check(wchar_t ch)
    426426{
    427427        if ((ch >= 0) && (ch <= 127))
     
    436436 *
    437437 */
    438 bool chr_check(const wchar_t ch)
     438bool chr_check(wchar_t ch)
    439439{
    440440        if ((ch >= 0) && (ch <= 1114111))
Note: See TracChangeset for help on using the changeset viewer.