Changes in kernel/test/print/print4.c [d16fc78:cb01e1e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/print/print4.c
rd16fc78 rcb01e1e 30 30 #include <test.h> 31 31 32 c onst char *test_print4(void)32 char *test_print4(void) 33 33 { 34 34 TPRINTF("ASCII printable characters (32 - 127) using printf(\"%%c\") and printf(\"%%lc\"):\n"); … … 44 44 TPRINTF(" "); 45 45 for (index = 0; index < 32; index++) 46 TPRINTF("%lc", (w int_t) ((group << 5) + index));46 TPRINTF("%lc", (wchar_t) ((group << 5) + index)); 47 47 48 48 TPRINTF("\n"); … … 56 56 uint8_t index; 57 57 for (index = 0; index < 32; index++) 58 TPRINTF("%lc", (w int_t) ((group << 5) + index));58 TPRINTF("%lc", (wchar_t) ((group << 5) + index)); 59 59 60 60 TPRINTF("\n");
Note:
See TracChangeset
for help on using the changeset viewer.