macro to provide this functionality on all platforms
AC_CHECK_FUNCS( bitncmp \
- isblank \
if_indextoname,
dnl if found
[],
#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
/*
getprotobyname \
getrlimit \
setrlimit \
- isblank \
fork,
dnl if found
[],
#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>
#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
/*