setup_once: provide ISASCII macro

pull/2/head
Yang Tse 14 years ago
parent 623f3cb531
commit 2c26d7d254
  1. 1
      setup_once.h

@ -248,6 +248,7 @@ struct timeval {
#define ISPRINT(x) (isprint((int) ((unsigned char)x)))
#define ISUPPER(x) (isupper((int) ((unsigned char)x)))
#define ISLOWER(x) (islower((int) ((unsigned char)x)))
#define ISASCII(x) (isascii((int) ((unsigned char)x)))
#define ISBLANK(x) (int)((((unsigned char)x) == ' ') || \
(((unsigned char)x) == '\t'))

Loading…
Cancel
Save