# Functions
No description provided by the author
ExtractUTF16Str uses unsafe package to copy UTF16 string to a byte slice.
StringToUTF16 returns the UTF-16 encoding of the UTF-8 string s, with a terminating NUL added.func StringToUTF16(s string) []uint16 { return utf16.Encode([]rune(s + "\u0000")) }.
StringToUTF16Ptr returns pointer to the UTF-16 encoding of the UTF-8 string s, with a terminating NUL added.
UTF16ToString returns the UTF-8 encoding of the UTF-16 sequence s, with a terminating NUL removed.
# Structs
No description provided by the author
No description provided by the author
No description provided by the author