Changeset 84239b1 in mainline for uspace/lib/bithenge/src/print.c
- Timestamp:
- 2018-03-11T19:39:11Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f3d47c97
- Parents:
- 850fd32
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/bithenge/src/print.c
r850fd32 r84239b1 162 162 const char *value = bithenge_string_node_value(node); 163 163 state_printf(state, "\""); 164 for (string_iterator_t i = string_iterator(value); !string_iterator_done(&i); ) { 164 string_iterator_t i = string_iterator(value); 165 while (!string_iterator_done(&i)) { 165 166 wchar_t ch; 166 167 errno_t rc = string_iterator_next(&i, &ch);
Note:
See TracChangeset
for help on using the changeset viewer.