wcstok.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/wcstok.c
blob: ecc8033190c781c6f75574686d3681254dee843f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <wchar.h>
wchar_t *wcstok(wchar_t *restrict s, const wchar_t *restrict sep, wchar_t **restrict p)
{
	if (!s && !(s = *p)) return NULL;
	s += wcsspn(s, sep);
	if (!*s) return *p = 0;
	*p = s + wcscspn(s, sep);
	if (**p) *(*p)++ = 0;
	else *p = 0;
	return s;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月05日 12:01:44 +0000

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