Changes in uspace/lib/bithenge/src/print.c [7c3fb9b:28a5ebd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/bithenge/src/print.c
r7c3fb9b r28a5ebd 40 40 #include <stdarg.h> 41 41 #include <stdio.h> 42 #include < wchar.h>42 #include <uchar.h> 43 43 #include <bithenge/blob.h> 44 44 #include <bithenge/print.h> … … 164 164 string_iterator_t i = string_iterator(value); 165 165 while (!string_iterator_done(&i)) { 166 wchar_t ch;166 char32_t ch; 167 167 errno_t rc = string_iterator_next(&i, &ch); 168 168 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.