2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2007-11-07 04:21:35 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2001-05-29 15:17:03 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2007-11-07 04:21:35 -05:00
|
|
|
* Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2001-05-29 15:17:03 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2007-11-07 04:21:35 -05:00
|
|
|
*
|
2001-05-29 15:17:03 -04:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2001-05-29 15:17:03 -04:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2001-05-29 15:17:03 -04:00
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2001-05-29 15:17:03 -04:00
|
|
|
|
|
|
|
#ifndef HAVE_STRTOK_R
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "strtok.h"
|
2004-01-29 08:56:45 -05:00
|
|
|
|
2001-05-29 15:17:03 -04:00
|
|
|
char *
|
2001-08-24 06:25:02 -04:00
|
|
|
Curl_strtok_r(char *ptr, const char *sep, char **end)
|
2001-05-29 15:17:03 -04:00
|
|
|
{
|
2007-11-07 04:21:35 -05:00
|
|
|
if(!ptr)
|
2001-08-24 06:25:02 -04:00
|
|
|
/* we got NULL input so then we get our last position instead */
|
|
|
|
ptr = *end;
|
2001-05-29 15:17:03 -04:00
|
|
|
|
2001-08-24 06:25:02 -04:00
|
|
|
/* pass all letters that are including in the separator string */
|
2007-11-07 04:21:35 -05:00
|
|
|
while(*ptr && strchr(sep, *ptr))
|
2001-08-24 06:25:02 -04:00
|
|
|
++ptr;
|
2001-05-29 15:17:03 -04:00
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
if(*ptr) {
|
2001-08-24 06:25:02 -04:00
|
|
|
/* so this is where the next piece of string starts */
|
|
|
|
char *start = ptr;
|
2001-05-29 15:17:03 -04:00
|
|
|
|
2001-08-24 06:25:02 -04:00
|
|
|
/* set the end pointer to the first byte after the start */
|
2001-08-26 16:51:16 -04:00
|
|
|
*end = start + 1;
|
2001-08-24 06:25:02 -04:00
|
|
|
|
|
|
|
/* scan through the string to find where it ends, it ends on a
|
|
|
|
null byte or a character that exists in the separator string */
|
2007-11-07 04:21:35 -05:00
|
|
|
while(**end && !strchr(sep, **end))
|
2001-08-24 06:25:02 -04:00
|
|
|
++*end;
|
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
if(**end) {
|
2001-08-24 06:25:02 -04:00
|
|
|
/* the end is not a null byte */
|
2001-08-26 10:27:07 -04:00
|
|
|
**end = '\0'; /* zero terminate it! */
|
2001-08-24 06:25:02 -04:00
|
|
|
++*end; /* advance the last pointer to beyond the null byte */
|
2001-05-29 15:17:03 -04:00
|
|
|
}
|
2001-08-24 06:25:02 -04:00
|
|
|
|
|
|
|
return start; /* return the position where the string starts */
|
2001-05-29 15:20:21 -04:00
|
|
|
}
|
2001-08-24 06:25:02 -04:00
|
|
|
|
|
|
|
/* we ended up on a null byte, there are no more strings to find! */
|
|
|
|
return NULL;
|
2001-05-29 15:17:03 -04:00
|
|
|
}
|
|
|
|
|
2001-08-24 06:25:02 -04:00
|
|
|
#endif /* this was only compiled if strtok_r wasn't present */
|