Changeset e1813cf in mainline for kernel/generic/src/printf/vprintf.c


Ignore:
Timestamp:
2009-03-31T22:51:41Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ce87a8aa
Parents:
b54d2f1
Message:

Start converting string functions according to the terminology agreed upon.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/printf/vprintf.c

    rb54d2f1 re1813cf  
    5050       
    5151        while (index < size) {
    52                 putchar(utf8_decode(str, &index, size));
     52                putchar(chr_decode(str, &index, size));
    5353                chars++;
    5454        }
     
    7575        wchar_t uc;
    7676       
    77         while ((uc = utf8_decode(str, &index, UTF8_NO_LIMIT)) != 0) {
     77        while ((uc = chr_decode(str, &index, UTF8_NO_LIMIT)) != 0) {
    7878                putchar(uc);
    7979                chars++;
Note: See TracChangeset for help on using the changeset viewer.