00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 00006 00007 #ifndef _CURL_STRTOK_R_H 00008 #define _CURL_STRTOK_R_H 00009 00010 #include "setup.h" 00011 #include <stddef.h> 00012 00013 #ifndef HAVE_STRTOK_R 00014 char *Curl_strtok_r(char *s, const char *delim, char **last); 00015 #define strtok_r Curl_strtok_r 00016 #else 00017 #include <string.h> 00018 #endif 00019 00020 #endif 00021
1.5.6