shithub: scc

ref: 9be3c2347c94f2d6a1bd5597a52c03aa02f1c535
dir: /libc/src/strtok.c/

View raw version
/* See LICENSE file for copyright and license details. */

#include <string.h>

char *
strtok(const char *s, const char *delim)
{
	static char *line;

	if (s) 
		line = s;
	if (!s && !line)
		return NULL;

	s = line + strspn(line, delim);
	if (*s == '\0')
		return line = NULL;

	line = s + strcspn(s, delim);
	if (*line != '\0')
		*line++ = '\0';
	else
		line = NULL;

	return s;
}