1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 16:18:48 -05:00

avoid using funtion isblank() and just use our ISBLANK

macro to provide this functionality on all platforms
This commit is contained in:
Yang Tse 2007-02-14 13:31:37 +00:00
parent 5c3f36b4b4
commit fbcf86b83e
5 changed files with 0 additions and 11 deletions

View File

@ -553,7 +553,6 @@ AC_CHECK_MEMBER(struct addrinfo.ai_flags,
AC_CHECK_FUNCS( bitncmp \ AC_CHECK_FUNCS( bitncmp \
isblank \
if_indextoname, if_indextoname,
dnl if found dnl if found
[], [],

View File

@ -124,12 +124,8 @@
#define ISUPPER(x) (isupper((int) ((unsigned char)x))) #define ISUPPER(x) (isupper((int) ((unsigned char)x)))
#define ISLOWER(x) (islower((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) == ' ') || \ #define ISBLANK(x) (int)((((unsigned char)x) == ' ') || \
(((unsigned char)x) == '\t')) (((unsigned char)x) == '\t'))
#endif
/* /*

View File

@ -1770,7 +1770,6 @@ AC_CHECK_FUNCS( strtoll \
getprotobyname \ getprotobyname \
getrlimit \ getrlimit \
setrlimit \ setrlimit \
isblank \
fork, fork,
dnl if found dnl if found
[], [],

View File

@ -84,7 +84,6 @@ Example set of cookies:
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <ctype.h>
#define _MPRINTF_REPLACE /* without this on windows OS we get undefined reference to snprintf */ #define _MPRINTF_REPLACE /* without this on windows OS we get undefined reference to snprintf */
#include <curl/mprintf.h> #include <curl/mprintf.h>

View File

@ -131,12 +131,8 @@
#define ISUPPER(x) (isupper((int) ((unsigned char)x))) #define ISUPPER(x) (isupper((int) ((unsigned char)x)))
#define ISLOWER(x) (islower((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) == ' ') || \ #define ISBLANK(x) (int)((((unsigned char)x) == ' ') || \
(((unsigned char)x) == '\t')) (((unsigned char)x) == '\t'))
#endif
/* /*