Restartable multibyte/wide string conversion Functions:
Related topics:
Library Functions in C | Standard Library in C | Header Files in C | Functions in C | Keywords in C | Data Types in C | Pointers in C
List of topics: C Programming
mbsrtowcs | size_t mbsrtowcs( wchar_t * dst, const char** src, size_t len, mbstate_t* ps ); |
mbsrtowcs_s(C11) | errno_t mbsrtowcs_s(size_t *restrict retval, wchar_t *restrict dst, rsize_t dstsz, const char **restrict src, rsize_t len, mbstate_t *restrict ps); |
wcsrtombs | size_t wcsrtombs(char *dst, const wchar_t **src, size_t len, mbstate_t* ps ); |
wcsrtombs_s(C11) | errno_t wcsrtombs_s(size_t *restrict retval, char *restrict dst, rsize_t dstsz, const wchar_t **restrict src, rsize_t len, mbstate_t *restrict ps); |
Related topics:
Library Functions in C | Standard Library in C | Header Files in C | Functions in C | Keywords in C | Data Types in C | Pointers in C
List of topics: C Programming
No comments:
Post a Comment