Implement wcscat().

This commit is contained in:
Sebastian Bauer 2018-03-28 21:19:47 +02:00
parent 345995000a
commit 60eebbe732
1 changed files with 4 additions and 2 deletions

View File

@ -35,11 +35,13 @@
#include "wchar_headers.h"
#endif /* _WCHAR_HEADERS_H */
/* Implementation based on musl */
/****************************************************************************/
wchar_t *
wcscat(wchar_t *dest, const wchar_t *src)
{
/* ZZZ unimplemented */
return(NULL);
wcscpy(dest + wcslen(dest), src);
return dest;
}