Changes in common/str.c [b31323f:45adeeb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/str.c
rb31323f r45adeeb 427 427 char32_t ch = _str_decode(str, offset, size, &mb); 428 428 429 if (ch == CHAR_INVALID )429 if (ch == CHAR_INVALID || mb.state) 430 430 return U_SPECIAL; 431 431 432 if (mb.state)433 return U_SPECIAL;434 435 432 return ch; 433 } 434 435 char32_t str_decode_r(const char *str, size_t *offset, size_t size, 436 char32_t replacement, mbstate_t *mb) 437 { 438 char32_t ch = _str_decode(str, offset, size, mb); 439 return (ch == CHAR_INVALID) ? replacement : ch; 436 440 } 437 441
Note:
See TracChangeset
for help on using the changeset viewer.