Changes in uspace/lib/bithenge/src/print.c [28a5ebd:7c3fb9b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/bithenge/src/print.c
r28a5ebd r7c3fb9b 40 40 #include <stdarg.h> 41 41 #include <stdio.h> 42 #include < uchar.h>42 #include <wchar.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 char32_t ch;166 wchar_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.