Wide string concatenation 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
wcscat(C95) | wchar_t *wcscat( wchar_t *dest, const wchar_t *src ); |
wcscat_s(C11) | errno_t wcscat_s(wchar_t *restrict dest, rsize_t destsz, const wchar_t *restrict src); |
wcsncat(C95) | wchar_t *wcsncat( wchar_t *dest, const wchar_t *src, size_t count ); |
wcsncat_s(C11) | errno_t wcsncat_s( wchar_t *restrict dest, rsize_t destsz, const wchar_t *restrict 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