aboutsummaryrefslogtreecommitdiff
path: root/ares
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2007-02-13 17:47:27 +0000
committerYang Tse <yangsita@gmail.com>2007-02-13 17:47:27 +0000
commit6d05a33ed92b76a1166bca069382f5d03302153c (patch)
tree3668d386fc971868455b4c616b96244d2a618050 /ares
parent569c169559823383042202f46b5ec554428102ad (diff)
use our own ISBLANK macro
Diffstat (limited to 'ares')
-rw-r--r--ares/setup_once.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ares/setup_once.h b/ares/setup_once.h
index 0ff1d65a1..6cfa526f7 100644
--- a/ares/setup_once.h
+++ b/ares/setup_once.h
@@ -115,6 +115,7 @@
*/
#define ISSPACE(x) (isspace((int) ((unsigned char)x)))
+#define ISBLANK(x) (isblank((int) ((unsigned char)x)))
#define ISDIGIT(x) (isdigit((int) ((unsigned char)x)))
#define ISALNUM(x) (isalnum((int) ((unsigned char)x)))
#define ISXDIGIT(x) (isxdigit((int) ((unsigned char)x)))