wcscpy.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/wcscpy.c
blob: e0ac194f3a1f4a31d81e981cba6c8646eed479c8 (plain) (blame)
1
2
3
4
5
6
7
8
#include <wchar.h>
wchar_t *wcscpy(wchar_t *d, const wchar_t *s)
{
	wchar_t *a = d;
	while ((*d++ = *s++));
	return a;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月07日 19:23:32 +0000

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