diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-10-31 09:45:17 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-10-31 09:45:17 +0100 |
commit | 8fe4bd084412f3085638907268c5ffd8bf93c339 (patch) | |
tree | 76559169a181041505bb214e556e8e72028c5118 /lib/strcase.h | |
parent | 44c53cc38bea66b7612a82fa4c9b68884b9167fa (diff) | |
download | curl-8fe4bd084412f3085638907268c5ffd8bf93c339.tar.gz |
curl_strequal: part of public API/ABI, needs to be kept
These two public functions have been mentioned as deprecated since a
very long time but since they are still part of the API and ABI we need
to keep them around.
Diffstat (limited to 'lib/strcase.h')
-rw-r--r-- | lib/strcase.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/strcase.h b/lib/strcase.h index a790653c6..932d79321 100644 --- a/lib/strcase.h +++ b/lib/strcase.h @@ -32,11 +32,11 @@ * non-ascii. */ -#define strcasecompare(a,b) curl_strcasecompare(a,b) -#define strncasecompare(a,b,c) curl_strncasecompare(a,b,c) +#define strcasecompare(a,b) Curl_strcasecompare(a,b) +#define strncasecompare(a,b,c) Curl_strncasecompare(a,b,c) -int curl_strcasecompare(const char *first, const char *second); -int curl_strncasecompare(const char *first, const char *second, size_t max); +int Curl_strcasecompare(const char *first, const char *second); +int Curl_strncasecompare(const char *first, const char *second, size_t max); char Curl_raw_toupper(char in); |