1 /* Reentrant string tokenizer. Generic version.
2 Copyright (C) 1991, 1996-1999, 2001, 2004, 2007, 2009-2012 Free Software
4 This file is part of the GNU C Library.
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
29 # define __strtok_r strtok_r
30 # define __rawmemchr strchr
33 /* Parse S into tokens separated by characters in DELIM.
34 If S is NULL, the saved pointer in SAVE_PTR is used as
35 the next starting point. For example:
36 char s[] = "-abc-=-def";
38 x = strtok_r(s, "-", &sp); // x = "abc", sp = "=-def"
39 x = strtok_r(NULL, "-=", &sp); // x = "def", sp = NULL
40 x = strtok_r(NULL, "=", &sp); // x = NULL
44 __strtok_r (char *s
, const char *delim
, char **save_ptr
)
51 /* Scan leading delimiters. */
52 s
+= strspn (s
, delim
);
59 /* Find the end of the token. */
61 s
= strpbrk (token
, delim
);
63 /* This token finishes the string. */
64 *save_ptr
= __rawmemchr (token
, '\0');
67 /* Terminate the token and make *SAVE_PTR point past it. */
74 libc_hidden_def (__strtok_r
)
75 weak_alias (__strtok_r
, strtok_r
)