Wednesday, November 30, 2016

C Multibyte wide character conversion Functions

Multibyte/wide character conversion Functions:
mblen int mblen( const char* s, size_t n );
mbtowc int mbtowc( wchar_t *pwc, const char *s, size_t n );
wctomb int wctomb( char *s, wchar_t wc );
wctomb_s(C11) errno_t wctomb_s(int *restrict status, char *restrict s, rsize_t ssz, wchar_t wc);

stdlib.h
Numeric conversion Functions
Pseudo-random sequence generation Functions
Memory management Functions
Communication with the environment Functions
Searching and sorting utilities Functions
Integer arithmetic Functions
Multibyte/wide character conversion Functions
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

No comments:

Post a Comment