wmemset.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/wmemset.c
blob: 07a037a0f92dd667cf0fd7c2ac74319462113664 (plain) (blame)
1
2
3
4
5
6
7
8
#include <wchar.h>
wchar_t *wmemset(wchar_t *d, wchar_t c, size_t n)
{
	wchar_t *ret = d;
	while (n--) *d++ = c;
	return ret;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月07日 08:20:07 +0000

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