diff options
Diffstat (limited to 'src/support/string.h')
-rw-r--r-- | src/support/string.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/support/string.h b/src/support/string.h index be2c3c6a3..af120ab4e 100644 --- a/src/support/string.h +++ b/src/support/string.h @@ -94,6 +94,11 @@ bool convertWTF8ToWTF16(std::ostream& os, std::string_view str); // Returns `true` iff the input was valid WTF-16. bool convertWTF16ToWTF8(std::ostream& os, std::string_view str); +// Writes the UTF-8 encoding of the given UTF-16LE string to `os`, inserting a +// replacement character in place of any unpaired surrogate or incomplete code +// unit. Returns `true` if the input was valid UTF-16. +bool convertUTF16ToUTF8(std::ostream& os, std::string_view str); + } // namespace wasm::String #endif // wasm_support_string_h |