]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/generic/strtok.c
update from main archive 961005
[thirdparty/glibc.git] / sysdeps / generic / strtok.c
CommitLineData
59dd8641
RM
1/* Copyright (C) 1991, 1996 Free Software Foundation, Inc.
2This file is part of the GNU C Library.
3
4The GNU C Library is free software; you can redistribute it and/or
5modify it under the terms of the GNU Library General Public License as
6published by the Free Software Foundation; either version 2 of the
7License, or (at your option) any later version.
8
9The GNU C Library is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12Library General Public License for more details.
13
14You should have received a copy of the GNU Library General Public
15License along with the GNU C Library; see the file COPYING.LIB. If
16not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17Boston, MA 02111-1307, USA. */
18
59dd8641
RM
19#include <string.h>
20
21
22static char *olds = NULL;
23
24/* Parse S into tokens separated by characters in DELIM.
25 If S is NULL, the last string strtok() was called with is
26 used. For example:
27 char s[] = "-abc-=-def";
28 x = strtok(s, "-"); // x = "abc"
29 x = strtok(NULL, "-="); // x = "def"
30 x = strtok(NULL, "="); // x = NULL
31 // s = "abc\0-def\0"
32*/
33char *
34strtok (s, delim)
35 char *s;
36 const char *delim;
37{
38 char *token;
39
40 if (s == NULL)
c4029823 41 s = olds;
59dd8641
RM
42
43 /* Scan leading delimiters. */
44 s += strspn (s, delim);
45 if (*s == '\0')
cccda09f 46 return NULL;
59dd8641
RM
47
48 /* Find the end of the token. */
49 token = s;
50 s = strpbrk (token, delim);
51 if (s == NULL)
52 /* This token finishes the string. */
a68b0d31 53 olds = strchr (token, '\0');
59dd8641
RM
54 else
55 {
56 /* Terminate the token and make OLDS point past it. */
57 *s = '\0';
58 olds = s + 1;
59 }
60 return token;
61}