2010-02-14 14:40:18 -05:00
|
|
|
#ifndef HEADER_CURL_STRTOK_H
|
|
|
|
#define HEADER_CURL_STRTOK_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2010-02-14 14:40:18 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2001-05-29 15:17:03 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2010-02-14 14:40:18 -05:00
|
|
|
* Copyright (C) 1998 - 2010, 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
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2010-02-14 14:40:18 -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
|
|
|
#include "setup.h"
|
2001-05-31 03:02:13 -04:00
|
|
|
#include <stddef.h>
|
2001-05-29 15:17:03 -04:00
|
|
|
|
|
|
|
#ifndef HAVE_STRTOK_R
|
2001-05-29 15:20:37 -04:00
|
|
|
char *Curl_strtok_r(char *s, const char *delim, char **last);
|
|
|
|
#define strtok_r Curl_strtok_r
|
2001-05-30 07:06:56 -04:00
|
|
|
#else
|
2001-05-31 02:05:32 -04:00
|
|
|
#include <string.h>
|
2001-05-29 15:17:03 -04:00
|
|
|
#endif
|
|
|
|
|
2010-02-14 14:40:18 -05:00
|
|
|
#endif /* HEADER_CURL_STRTOK_H */
|