mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 20:15:03 -05:00
cleanups
This commit is contained in:
parent
5323340cae
commit
4034f31823
18
lib/setup.h
18
lib/setup.h
@ -96,24 +96,6 @@ defined(HAVE_LIBSSL) && defined(HAVE_LIBCRYPTO)
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if 0 /* zlib experiments are halted 17th october, 1999 (Daniel) */
|
|
||||||
#if defined(HAVE_ZLIB_H) && defined(HAVE_LIBZ)
|
|
||||||
/* Both lib and header file exist, we have libz! */
|
|
||||||
#define USE_ZLIB
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if 0
|
|
||||||
#ifdef HAVE_STRCASECMP
|
|
||||||
#define strnequal(x,y,z) !(strncasecmp)(x,y,z)
|
|
||||||
#define strequal(x,y) !(strcasecmp)(x,y)
|
|
||||||
|
|
||||||
#else
|
|
||||||
#define strnequal(x,y,z) !strnicmp(x,y,z)
|
|
||||||
#define strequal(x,y) !stricmp(x,y)
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Below we define four functions. They should
|
/* Below we define four functions. They should
|
||||||
1. close a socket
|
1. close a socket
|
||||||
2. read from a socket
|
2. read from a socket
|
||||||
|
@ -28,11 +28,11 @@
|
|||||||
int curl_strequal(const char *first, const char *second)
|
int curl_strequal(const char *first, const char *second)
|
||||||
{
|
{
|
||||||
#if defined(HAVE_STRCASECMP)
|
#if defined(HAVE_STRCASECMP)
|
||||||
return !strcasecmp(first, second);
|
return !(strcasecmp)(first, second);
|
||||||
#elif defined(HAVE_STRCMPI)
|
#elif defined(HAVE_STRCMPI)
|
||||||
return !strcmpi(first, second);
|
return !(strcmpi)(first, second);
|
||||||
#elif defined(HAVE_STRICMP)
|
#elif defined(HAVE_STRICMP)
|
||||||
return !stricmp(first, second);
|
return !(stricmp)(first, second);
|
||||||
#else
|
#else
|
||||||
while (*first && *second) {
|
while (*first && *second) {
|
||||||
if (toupper(*first) != toupper(*second)) {
|
if (toupper(*first) != toupper(*second)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user