diff options
author | midipix <writeonce@midipix.org> | 2017-11-12 11:50:54 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-11-25 11:30:33 -0500 |
commit | e8211c2cc4f8ade3f928a6ce8a5f3a92dd637d1d (patch) | |
tree | 9327fa62af7472496338ca26d69a90903e045319 /src | |
parent | ed50689395c96af63ce60d8e804937880c7a3cd0 (diff) | |
download | u16ports-e8211c2cc4f8ade3f928a6ce8a5f3a92dd637d1d.tar.bz2 u16ports-e8211c2cc4f8ade3f928a6ce8a5f3a92dd637d1d.tar.xz |
added u16_wcsncat().
Diffstat (limited to 'src')
-rw-r--r-- | src/u16_wcsncat.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/u16_wcsncat.c b/src/u16_wcsncat.c new file mode 100644 index 0000000..0528aaa --- /dev/null +++ b/src/u16_wcsncat.c @@ -0,0 +1,23 @@ +/*******************************************************************/ +/* 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_wcsncat(uint16_t * dst, const uint16_t * src, size_t len) +{ + uint16_t * ret; + + ret = dst; + dst += u16_wcslen(dst); + + for (; len && *src; len--) + *dst++ = *src++; + + *dst = 0; + + return ret; +} |