diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-03-14 08:53:31 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-03-14 08:53:31 +0000 |
commit | dbbd20646f7133114b1ef4cd92a1c857bb33aeb0 (patch) | |
tree | 1536eddab8497261d2bd2dc14c47b5808f17dda6 /include | |
parent | b8fe4deb13a0ee3e0ec2fca95d122a948e9e1bf9 (diff) |
Curl_str(n)equal renamed to curl_str(n)equal
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 95d479c92..7ce4ff87e 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -450,10 +450,10 @@ typedef enum { NOTE: they return TRUE if the strings match *case insensitively*. */ -extern int (Curl_strequal)(const char *s1, const char *s2); -extern int (Curl_strnequal)(const char *s1, const char *s2, size_t n); -#define strequal(a,b) Curl_strequal(a,b) -#define strnequal(a,b,c) Curl_strnequal(a,b,c) +extern int (curl_strequal)(const char *s1, const char *s2); +extern int (curl_strnequal)(const char *s1, const char *s2, size_t n); +#define strequal(a,b) curl_strequal(a,b) +#define strnequal(a,b,c) curl_strnequal(a,b,c) /* external form function */ int curl_formparse(char *string, |