Standard library header <uchar.h> (C11) (original) (raw)
This header is part of null-terminated multibyte strings library.
[edit] Functions
| mbrtoc8(C23) | converts a narrow multibyte character to UTF-8 encoding (function) [edit] |
|---|---|
| c8rtomb(C23) | converts UTF-8 string to narrow multibyte encoding (function) [edit] |
| mbrtoc16(C11) | converts a narrow multibyte character to UTF-16 encoding (function) [edit] |
| c16rtomb(C11) | converts a UTF-16 character to narrow multibyte encoding (function) [edit] |
| mbrtoc32(C11) | converts a narrow multibyte character to UTF-32 encoding (function) [edit] |
| c32rtomb(C11) | converts a UTF-32 character to narrow multibyte encoding (function) [edit] |
[edit] Types
[edit] Synopsis
#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);