wcspbrk.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/wcspbrk.c
blob: 0c72c197b33b5be8a07543a30e1e250caeae4470 (plain) (blame)
1
2
3
4
5
6
7
#include <wchar.h>
wchar_t *wcspbrk(const wchar_t *s, const wchar_t *b)
{
	s += wcscspn(s, b);
	return *s ? (wchar_t *)s : NULL;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月05日 11:04:03 +0000

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