summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-11-12 11:50:21 -0500
committermidipix <writeonce@midipix.org>2017-11-25 11:30:33 -0500
commited50689395c96af63ce60d8e804937880c7a3cd0 (patch)
tree658f4d6495c8869708e60b756875646c6c4eca7d
parent397cb191682a12464bc94cc746e2ef4b0b379c1d (diff)
downloadu16ports-ed50689395c96af63ce60d8e804937880c7a3cd0.tar.bz2
u16ports-ed50689395c96af63ce60d8e804937880c7a3cd0.tar.xz
added u16_wcscat().
-rw-r--r--project/common.mk1
-rw-r--r--src/u16_wcscat.c14
2 files changed, 15 insertions, 0 deletions
diff --git a/project/common.mk b/project/common.mk
index 74865eb..8a01a41 100644
--- a/project/common.mk
+++ b/project/common.mk
@@ -14,6 +14,7 @@ API_SRCS = \
src/u16_wcpcpy.c \
src/u16_wcpncpy.c \
src/u16_wcsdup.c \
+ src/u16_wcscat.c \
INTERNAL_SRCS = \
diff --git a/src/u16_wcscat.c b/src/u16_wcscat.c
new file mode 100644
index 0000000..e735fdf
--- /dev/null
+++ b/src/u16_wcscat.c
@@ -0,0 +1,14 @@
+/*******************************************************************/
+/* u16ports: u16 variants of wide character string functions. */
+/* Copyright (C) 2017 Z. Gilboa */
+/* Released under the Standard MIT License; see COPYING.U16PORTS. */
+/*******************************************************************/
+
+#include <stdint.h>
+#include <u16ports/u16ports.h>
+
+uint16_t * u16_wcscat(uint16_t * dst, const uint16_t * src)
+{
+ u16_wcscpy(dst + u16_wcslen(dst),src);
+ return dst;
+}