use our own ISBLANK macro

This commit is contained in:
Yang Tse
2007-02-13 17:47:27 +00:00
parent 569c169559
commit 6d05a33ed9
3 changed files with 7 additions and 6 deletions

View File

@@ -122,6 +122,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)))