Implement wcscat().

This commit is contained in:
Sebastian Bauer
2018-03-28 21:23:13 +02:00
parent 345995000a
commit 60eebbe732
+4 -2
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;
}