. service tells you which device it couldn't stat
[minix3.git] / lib / other / strtok_r.c
blobbcfbc6b5f92e120ccd9719521de2545af9b53957
1 /*
2 * Copyright (c) 1998 Softweyr LLC. All rights reserved.
4 * strtok_r, from Berkeley strtok
5 * Oct 13, 1998 by Wes Peters <wes@softweyr.com>
7 * Copyright (c) 1988, 1993
8 * The Regents of the University of California. All rights reserved.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notices, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notices, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgement:
24 * This product includes software developed by Softweyr LLC, the
25 * University of California, Berkeley, and its contributors.
27 * 4. Neither the name of the University nor the names of its contributors
28 * may be used to endorse or promote products derived from this software
29 * without specific prior written permission.
31 * THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS
32 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
34 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE
35 * REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
37 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
38 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
39 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
40 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
41 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44 #ifndef lint
45 static const char rcsid[] =
46 "$FreeBSD: src/lib/libc/string/strtok.c,v 1.2.6.1 2001/07/09 23:30:07 obrien Exp $";
47 #endif
49 #include <stddef.h>
50 #include <string.h>
52 char *
53 strtok_r(char *s, const char *delim, char **last)
55 char *spanp;
56 int c, sc;
57 char *tok;
59 if (s == NULL && (s = *last) == NULL)
61 return NULL;
65 * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
67 cont:
68 c = *s++;
69 for (spanp = (char *)delim; (sc = *spanp++) != 0; )
71 if (c == sc)
73 goto cont;
77 if (c == 0) /* no non-delimiter characters */
79 *last = NULL;
80 return NULL;
82 tok = s - 1;
85 * Scan token (scan for delimiters: s += strcspn(s, delim), sort of).
86 * Note that delim must have one NUL; we stop if we see that, too.
88 for (;;)
90 c = *s++;
91 spanp = (char *)delim;
94 if ((sc = *spanp++) == c)
96 if (c == 0)
98 s = NULL;
100 else
102 char *w = s - 1;
103 *w = '\0';
105 *last = s;
106 return tok;
109 while (sc != 0);
111 /* NOTREACHED */
115 #if 0
116 char *
117 strtok(char *s, const char *delim)
119 static char *last;
121 return strtok_r(s, delim, &last);
123 #endif
125 #if defined(DEBUG_STRTOK)
128 * Test the tokenizer.
131 main()
133 char test[80], blah[80];
134 char *sep = "\\/:;=-";
135 char *word, *phrase, *brkt, *brkb;
137 printf("String tokenizer test:\n");
139 strcpy(test, "This;is.a:test:of=the/string\\tokenizer-function.");
141 for (word = strtok(test, sep);
142 word;
143 word = strtok(NULL, sep))
145 printf("Next word is \"%s\".\n", word);
148 phrase = "foo";
150 strcpy(test, "This;is.a:test:of=the/string\\tokenizer-function.");
152 for (word = strtok_r(test, sep, &brkt);
153 word;
154 word = strtok_r(NULL, sep, &brkt))
156 strcpy(blah, "blah:blat:blab:blag");
158 for (phrase = strtok_r(blah, sep, &brkb);
159 phrase;
160 phrase = strtok_r(NULL, sep, &brkb))
162 printf("So far we're at %s:%s\n", word, phrase);
166 return 0;
169 #endif /* DEBUG_STRTOK */