mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 02:58:26 +08:00
2.4 KiB
2.4 KiB
utf8_t
概述
wchar_t和char类型转换接口。
示例:
const char* str = "hello";
const wchar_t* wstr = L"hello";
char res_str[128];
wchar_t res_wstr[128];
tk_utf8_to_utf16(str, res_wstr, ARRAY_SIZE(res_wstr));
tk_utf8_from_utf16(wstr, res_str, ARRAY_SIZE(res_str));
函数
函数名称 | 说明 |
---|---|
tk_utf8_from_utf16 | 把ucs字符串转成UTF8字符串。 |
tk_utf8_from_utf16_ex | 把ucs字符串转成UTF8字符串。 |
tk_utf8_to_utf16 | 将char类型转换为wchar_t类型。 |
tk_utf8_from_utf16 函数
- 函数功能:
把ucs字符串转成UTF8字符串。
- 函数原型:
char* tk_utf8_from_utf16 (const wchar_t* in, const char* out, uint32_t out_size);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | char* | 返回UTF8字符串。 |
in | const wchar_t* | 输入字符串。 |
out | const char* | 输出字符串。 |
out_size | uint32_t | 输出字符串的最大长度。 |
tk_utf8_from_utf16_ex 函数
- 函数功能:
把ucs字符串转成UTF8字符串。
- 函数原型:
char* tk_utf8_from_utf16_ex (const wchar_t* in, uint32_t in_size, const char* out, uint32_t out_size);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | char* | 返回UTF8字符串。 |
in | const wchar_t* | 输入字符串。 |
in_size | uint32_t | 输入字符串的长度。 |
out | const char* | 输出字符串。 |
out_size | uint32_t | 输出字符串的最大长度。 |
tk_utf8_to_utf16 函数
- 函数功能:
将char类型转换为wchar_t类型。
- 函数原型:
wchar_t* tk_utf8_to_utf16 (const char* str, const wchar_t* out, uint32_t size);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | wchar_t* | 值。 |
str | const char* | str。 |
out | const wchar_t* | 返回结果缓冲区。 |
size | uint32_t | 缓冲区大小。 |