From 9bc8a11afeed3569736b89754012e3ca22ee10f6 Mon Sep 17 00:00:00 2001 From: pommicket Date: Sun, 20 Feb 2022 13:18:21 -0800 Subject: conclusion --- 05/musl-0.6.0/src/string/wmemmove.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 05/musl-0.6.0/src/string/wmemmove.c (limited to '05/musl-0.6.0/src/string/wmemmove.c') diff --git a/05/musl-0.6.0/src/string/wmemmove.c b/05/musl-0.6.0/src/string/wmemmove.c new file mode 100644 index 0000000..49608ca --- /dev/null +++ b/05/musl-0.6.0/src/string/wmemmove.c @@ -0,0 +1,11 @@ +#include +#include + +wchar_t *wmemmove(wchar_t *d, const wchar_t *s, size_t n) +{ + if ((size_t)(d-s) < n) { + while (n--) d[n] = s[n]; + return d; + } + return wmemcpy(d, s, n); +} -- cgit v1.2.3