Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/test/print/print4.c

    rd16fc78 rcb01e1e  
    3030#include <test.h>
    3131
    32 const char *test_print4(void)
     32char *test_print4(void)
    3333{
    3434        TPRINTF("ASCII printable characters (32 - 127) using printf(\"%%c\") and printf(\"%%lc\"):\n");
     
    4444                TPRINTF("  ");
    4545                for (index = 0; index < 32; index++)
    46                         TPRINTF("%lc", (wint_t) ((group << 5) + index));
     46                        TPRINTF("%lc", (wchar_t) ((group << 5) + index));
    4747               
    4848                TPRINTF("\n");
     
    5656                uint8_t index;
    5757                for (index = 0; index < 32; index++)
    58                         TPRINTF("%lc", (wint_t) ((group << 5) + index));
     58                        TPRINTF("%lc", (wchar_t) ((group << 5) + index));
    5959               
    6060                TPRINTF("\n");
Note: See TracChangeset for help on using the changeset viewer.