标准库头文件 <uchar.h> (C11)
来自 cppreference.cn
此头文件是 空字符结尾的多字节字符串 库的一部分。
[编辑] 函数
(C23) |
将窄多字节字符转换为 UTF-8 编码 (函数) |
(C23) |
将 UTF-8 字符串转换为窄多字节编码 (函数) |
(C11) |
将窄多字节字符转换为 UTF-16 编码 (函数) |
(C11) |
将 UTF-16 字符转换为窄多字节编码 (函数) |
(C11) |
将窄多字节字符转换为 UTF-32 编码 (函数) |
(C11) |
将 UTF-32 字符转换为窄多字节编码 (函数) |
[编辑] 类型
(C95) |
迭代多字节字符串所需的转换状态信息 (类) |
(C23) |
8 位字符类型 (类型定义) |
(C11) |
16 位字符类型 (类型定义) |
(C11) |
32 位字符类型 (类型定义) |
[编辑] 概要
#define __STDC_VERSION_UCHAR_H__ 202311L typedef /* see description */ mbstate_t; typedef /* see description */ size_t; typedef /* see description */ char8_t; typedef /* see description */ char16_t; typedef /* see description */ char32_t; size_t mbrtoc8(char8_t* restrict pc8, const char* restrict s, size_t n, mbstate_t* restrict ps); size_t c8rtomb(char* restrict s, char8_t c8, mbstate_t* restrict ps); size_t mbrtoc16(char16_t* restrict pc16, const char* restrict s, size_t n, mbstate_t* restrict ps); size_t c16rtomb(char* restrict s, char16_t c16, mbstate_t* restrict ps); size_t mbrtoc32(char32_t* restrict pc32, const char* restrict s, size_t n, mbstate_t* restrict ps); size_t c32rtomb(char* restrict s, char32_t c32, mbstate_t* restrict ps);