diff options
author | midipix <writeonce@midipix.org> | 2017-11-12 11:50:21 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-11-25 11:30:33 -0500 |
commit | ed50689395c96af63ce60d8e804937880c7a3cd0 (patch) | |
tree | 658f4d6495c8869708e60b756875646c6c4eca7d /src | |
parent | 397cb191682a12464bc94cc746e2ef4b0b379c1d (diff) | |
download | u16ports-ed50689395c96af63ce60d8e804937880c7a3cd0.tar.bz2 u16ports-ed50689395c96af63ce60d8e804937880c7a3cd0.tar.xz |
added u16_wcscat().
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; +} |