diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/u16_wcscat.c | 14 |
1 files changed, 14 insertions, 0 deletions
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; +} |