mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 20:15:03 -05:00
Added the strequal() prototypes here
This commit is contained in:
parent
e5c792d4e6
commit
1f32da93d7
@ -395,11 +395,16 @@ typedef char bool;
|
|||||||
#endif /* (rabe) */
|
#endif /* (rabe) */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if 0
|
|
||||||
/* At last, I stand here in front of you today and can officially proclaim
|
/* These functions are in the libcurl, they're here for portable reasons and
|
||||||
this function prototype as history... 17th of May, 2000 */
|
they are used by the 'curl' client. They really should be moved to some kind
|
||||||
UrgError curl_urlget(UrgTag, ...);
|
of "portability library" since it has nothing to do with file transfers and
|
||||||
#endif
|
might be usable to other programs...
|
||||||
|
|
||||||
|
NOTE: they return TRUE if the strings match *case insensitively*.
|
||||||
|
*/
|
||||||
|
extern int (strequal)(const char *s1, const char *s2);
|
||||||
|
extern int (strnequal)(const char *s1, const char *s2, size_t n);
|
||||||
|
|
||||||
/* external form function */
|
/* external form function */
|
||||||
int curl_formparse(char *string,
|
int curl_formparse(char *string,
|
||||||
@ -414,8 +419,8 @@ char *curl_getenv(char *variable);
|
|||||||
char *curl_version(void);
|
char *curl_version(void);
|
||||||
|
|
||||||
/* This is the version number */
|
/* This is the version number */
|
||||||
#define LIBCURL_VERSION "7.0.11test"
|
#define LIBCURL_VERSION "7.0.12test"
|
||||||
#define LIBCURL_VERSION_NUM 0x07000b
|
#define LIBCURL_VERSION_NUM 0x07000c
|
||||||
|
|
||||||
/* linked-list structure for the CURLOPT_QUOTE option */
|
/* linked-list structure for the CURLOPT_QUOTE option */
|
||||||
struct curl_slist {
|
struct curl_slist {
|
||||||
|
Loading…
Reference in New Issue
Block a user