strtok.c revision 1.1
11.1Scgd/*
21.1Scgd * Copyright (c) 1988 Regents of the University of California.
31.1Scgd * All rights reserved.
41.1Scgd *
51.1Scgd * Redistribution and use in source and binary forms, with or without
61.1Scgd * modification, are permitted provided that the following conditions
71.1Scgd * are met:
81.1Scgd * 1. Redistributions of source code must retain the above copyright
91.1Scgd *    notice, this list of conditions and the following disclaimer.
101.1Scgd * 2. Redistributions in binary form must reproduce the above copyright
111.1Scgd *    notice, this list of conditions and the following disclaimer in the
121.1Scgd *    documentation and/or other materials provided with the distribution.
131.1Scgd * 3. All advertising materials mentioning features or use of this software
141.1Scgd *    must display the following acknowledgement:
151.1Scgd *	This product includes software developed by the University of
161.1Scgd *	California, Berkeley and its contributors.
171.1Scgd * 4. Neither the name of the University nor the names of its contributors
181.1Scgd *    may be used to endorse or promote products derived from this software
191.1Scgd *    without specific prior written permission.
201.1Scgd *
211.1Scgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221.1Scgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231.1Scgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241.1Scgd * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251.1Scgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261.1Scgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271.1Scgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281.1Scgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291.1Scgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301.1Scgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311.1Scgd * SUCH DAMAGE.
321.1Scgd */
331.1Scgd
341.1Scgd#if defined(LIBC_SCCS) && !defined(lint)
351.1Scgdstatic char sccsid[] = "@(#)strtok.c	5.8 (Berkeley) 2/24/91";
361.1Scgd#endif /* LIBC_SCCS and not lint */
371.1Scgd
381.1Scgd#include <stddef.h>
391.1Scgd#include <string.h>
401.1Scgd
411.1Scgdchar *
421.1Scgdstrtok(s, delim)
431.1Scgd	register char *s;
441.1Scgd	register const char *delim;
451.1Scgd{
461.1Scgd	register char *spanp;
471.1Scgd	register int c, sc;
481.1Scgd	char *tok;
491.1Scgd	static char *last;
501.1Scgd
511.1Scgd
521.1Scgd	if (s == NULL && (s = last) == NULL)
531.1Scgd		return (NULL);
541.1Scgd
551.1Scgd	/*
561.1Scgd	 * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
571.1Scgd	 */
581.1Scgdcont:
591.1Scgd	c = *s++;
601.1Scgd	for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
611.1Scgd		if (c == sc)
621.1Scgd			goto cont;
631.1Scgd	}
641.1Scgd
651.1Scgd	if (c == 0) {		/* no non-delimiter characters */
661.1Scgd		last = NULL;
671.1Scgd		return (NULL);
681.1Scgd	}
691.1Scgd	tok = s - 1;
701.1Scgd
711.1Scgd	/*
721.1Scgd	 * Scan token (scan for delimiters: s += strcspn(s, delim), sort of).
731.1Scgd	 * Note that delim must have one NUL; we stop if we see that, too.
741.1Scgd	 */
751.1Scgd	for (;;) {
761.1Scgd		c = *s++;
771.1Scgd		spanp = (char *)delim;
781.1Scgd		do {
791.1Scgd			if ((sc = *spanp++) == c) {
801.1Scgd				if (c == 0)
811.1Scgd					s = NULL;
821.1Scgd				else
831.1Scgd					s[-1] = 0;
841.1Scgd				last = s;
851.1Scgd				return (tok);
861.1Scgd			}
871.1Scgd		} while (sc != 0);
881.1Scgd	}
891.1Scgd	/* NOTREACHED */
901.1Scgd}
91