Wide string copying 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
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); |
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