summaryrefslogtreecommitdiff
path: root/src/wchar/wcscat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcscat.c')
-rw-r--r--src/wchar/wcscat.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wchar/wcscat.c b/src/wchar/wcscat.c
new file mode 100644
index 00000000..8ffec24f
--- /dev/null
+++ b/src/wchar/wcscat.c
@@ -0,0 +1,11 @@
+#include <wchar.h>
+
+wchar_t * wcscat(wchar_t * restrict s1, const wchar_t * restrict s2)
+{
+ wcscpy(s1 + wcslen(s1), s2);
+ return s1;
+}
+
+/*
+STDC(199409)
+*/