wcsncat.c

The libc implementation

Author

Marcel Sondaar

License

Public Domain

Summary
wcsncat.cThe libc implementation
Functions
wcsncatAppends atmost n characters of s2 to the end of s1

Functions

wcsncat

#include <wchar.h> wchar_t *wcsncat(wchar_t * _PDCLIB_restrict s1,
const wchar_t * _PDCLIB_restrict s2,
size_t n)

Appends atmost n characters of s2 to the end of s1

Returns the value of s1

#include <wchar.h> wchar_t *wcsncat(wchar_t * _PDCLIB_restrict s1,
const wchar_t * _PDCLIB_restrict s2,
size_t n)
Appends atmost n characters of s2 to the end of s1