diff options
author | Yang Tse <yangsita@gmail.com> | 2007-02-13 17:47:27 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-02-13 17:47:27 +0000 |
commit | 6d05a33ed92b76a1166bca069382f5d03302153c (patch) | |
tree | 3668d386fc971868455b4c616b96244d2a618050 /ares | |
parent | 569c169559823383042202f46b5ec554428102ad (diff) |
use our own ISBLANK macro
Diffstat (limited to 'ares')
-rw-r--r-- | ares/setup_once.h | 1 |
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))) |