| 552 | } |
| 553 | |
| 554 | StringView strTrimSpace(const StringView& _str) |
| 555 | { |
| 556 | return strLTrimSpace(strRTrimSpace(_str) ); |
| 557 | } |
| 558 | |
| 559 | // If offset in UTF-8 string doesn't land on rune, walk back until first byte of rune is reached. |
| 560 | static const char* fixPtrToRune(const char* _strBegin, const char* _curr) |
nothing calls this directly
no test coverage detected