Wednesday, November 30, 2016

C Wide string copying Functions

Wide string copying Functions:
wcscpy(C95) wchar_t *wcscpy( wchar_t *dest, const wchar_t *src );
wcscpy_s(C11) errno_t wcscpy_s( wchar_t *restrict dest, rsize_t destsz, const wchar_t *restrict src );
wcsncpy(C95) wchar_t * wcsncpy( wchar_t * dest, const wchar_t * src, size_t count );
wcsncpy_s(C11) errno_t wcsncpy_s( wchar_t *restrict dest, rsize_t destsz, const wchar_t *restrict src, rsize_t n);
wmemcpy(C95) wchar_t * wmemcpy( wchar_t * dest, const wchar_t * src, size_t count );
wmemcpy_s(C11) errno_t wmemcpy_s( wchar_t *restrict dest, rsize_t destsz, const wchar_t *restrict src, rsize_t count );
wmemmove(C95) wchar_t * wmemmove( wchar_t * dest, const wchar_t * src, size_t count );
wmemmove_s(C11) errno_t wmemmove_s( wchar_t *dest, rsize_t destsz, const wchar_t *src, rsize_t count);

wchar.h
Formatted wide character input/output Functions
Wide character input/output Functions
Wide string numeric conversion Functions
Wide string copying Functions
Wide string concatenation Functions
Wide string comparison Functions
Wide string search functions
Miscellaneous Functions
Wide character time conversion Functions
Single-byte/wide character conversion Functions
Conversion state Functions
Restartable multibyte/wide character conversion Functions
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

No comments:

Post a Comment