use our own ISBLANK macro
authorYang Tse <yangsita@gmail.com>
Tue, 13 Feb 2007 17:47:27 +0000 (17:47 +0000)
committerYang Tse <yangsita@gmail.com>
Tue, 13 Feb 2007 17:47:27 +0000 (17:47 +0000)
setup_once.h

index 0ff1d65..6cfa526 100644 (file)
  */
 
 #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)))