wcsnlen.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/wcsnlen.c
blob: a7763373147b4fa1215a74cf20952630276b9e9a (plain) (blame)
1
2
3
4
5
6
7
8
#include <wchar.h>
size_t wcsnlen(const wchar_t *s, size_t n)
{
	const wchar_t *z = wmemchr(s, 0, n);
	if (z) n = z-s;
	return n;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月06日 11:18:35 +0000

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