strtok.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/strtok.c
blob: 35087902d66ac7c413c6b0bfd1d7446b5b68afef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <string.h>
char *strtok(char *restrict s, const char *restrict sep)
{
	static char *p;
	if (!s && !(s = p)) return NULL;
	s += strspn(s, sep);
	if (!*s) return p = 0;
	p = s + strcspn(s, sep);
	if (*p) *p++ = 0;
	else p = 0;
	return s;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月04日 10:16:18 +0000

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