diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2004-11-09 14:00:56 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2004-11-09 14:00:56 +0000 |
commit | 377e43fbb9ff48fc114c9c6ecc1b04796e01b0fb (patch) | |
tree | e483830193250422ae04aba8ce38538a3872cc24 /lib/strequal.h | |
parent | 1f2b042b9538ca6a8aef75679e7e66a274cc0063 (diff) |
Changes for removing libcurl.def file on Win32.
Added "CURL_EXTERN" to memdebug.h functions.
Cleaned up Makefile.vc6.
Diffstat (limited to 'lib/strequal.h')
-rw-r--r-- | lib/strequal.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/strequal.h b/lib/strequal.h index 586521175..b3be070c3 100644 --- a/lib/strequal.h +++ b/lib/strequal.h @@ -23,11 +23,15 @@ * $Id$ ***************************************************************************/ +#include <curl/curl.h> + +#if 0 /* - * These two actually are public functions. + * These two actually are public functions, which are in <curl/curl.h> */ int curl_strequal(const char *first, const char *second); int curl_strnequal(const char *first, const char *second, size_t max); +#endif #define strequal(a,b) curl_strequal(a,b) #define strnequal(a,b,c) curl_strnequal(a,b,c) |