diff options
Diffstat (limited to 'memory/wcscat.c')
-rw-r--r-- | memory/wcscat.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/memory/wcscat.c b/memory/wcscat.c new file mode 100644 index 0000000..a8d59d1 --- /dev/null +++ b/memory/wcscat.c @@ -0,0 +1,7 @@ +#include "memory.h" + +wchar_t *wcscat(wchar_t *restrict destination, wchar_t const *restrict source) +{ + wcscpy(destination + wcslen(destination), source); + return destination; +} |