wmemmove.c\string\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/string/wmemmove.c
blob: cde4feec920d2c0f99d5b28578889bd8410abb27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <string.h>
#include <wchar.h>
wchar_t *wmemmove(wchar_t *d, const wchar_t *s, size_t n)
{
	wchar_t *d0 = d;
	if ((size_t)(d-s) < n)
		while (n--) d[n] = s[n];
	else
		while (n--) *d++ = *s++;
	return d0;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月27日 16:48:32 +0000

AltStyle によって変換されたページ (->オリジナル) /