]> granicus.if.org Git - curl/commitdiff
avoid using funtion isblank() and just use our ISBLANK
authorYang Tse <yangsita@gmail.com>
Wed, 14 Feb 2007 13:31:37 +0000 (13:31 +0000)
committerYang Tse <yangsita@gmail.com>
Wed, 14 Feb 2007 13:31:37 +0000 (13:31 +0000)
macro to provide this functionality on all platforms

ares/configure.ac
ares/setup_once.h
configure.ac
lib/cookie.c
lib/setup_once.h

index 78f239f25e539637edd6183b88e7341569b2988b..0165c5e902263c8e9b9edb612932675068c2e65d 100644 (file)
@@ -553,7 +553,6 @@ AC_CHECK_MEMBER(struct addrinfo.ai_flags,
 
 
 AC_CHECK_FUNCS( bitncmp \
-                isblank \
                 if_indextoname,
 dnl if found
 [],
index 9d3908550add7c145ec5d881afa460588643cd6d..202b0cadc2d919760b32bc436a5103ec238c26f3 100644 (file)
 #define ISUPPER(x)  (isupper((int)  ((unsigned char)x)))
 #define ISLOWER(x)  (islower((int)  ((unsigned char)x)))
 
-#ifdef HAVE_ISBLANK
-#define ISBLANK(x)  (isblank((int)  ((unsigned char)x)))
-#else
 #define ISBLANK(x)  (int)((((unsigned char)x) == ' ') || \
                           (((unsigned char)x) == '\t'))
-#endif
 
 
 /*
index 43cb2f8e4b54531a74b31267095d44643a0c112a..5e6e15ed3c06ac268ff03cd8b3557a8435344f60 100644 (file)
@@ -1770,7 +1770,6 @@ AC_CHECK_FUNCS( strtoll \
                 getprotobyname \
                 getrlimit \
                 setrlimit \
-                isblank \
                 fork,
 dnl if found
 [],
index 913ffabebc48a56d42768c4881b357a63211cd60..41a366d2da217ac068f7e198eefd85d302e87a49 100644 (file)
@@ -84,7 +84,6 @@ Example set of cookies:
 
 #include <stdlib.h>
 #include <string.h>
-#include <ctype.h>
 
 #define _MPRINTF_REPLACE /* without this on windows OS we get undefined reference to snprintf */
 #include <curl/mprintf.h>
index 827a6901e582c0a7af1c53bf85e89459f76c798d..e5a1117acb345735ee52db5138169a4d3bff027a 100644 (file)
 #define ISUPPER(x)  (isupper((int)  ((unsigned char)x)))
 #define ISLOWER(x)  (islower((int)  ((unsigned char)x)))
 
-#ifdef HAVE_ISBLANK
-#define ISBLANK(x)  (isblank((int)  ((unsigned char)x)))
-#else
 #define ISBLANK(x)  (int)((((unsigned char)x) == ' ') || \
                           (((unsigned char)x) == '\t'))
-#endif
 
 
 /*