1
0
mirror of https://frontier.innolan.net/rainlance/c-ares.git synced 2025-11-23 02:46:14 +00:00

use our own ISUPPER and ISLOWER macros

This commit is contained in:
Yang Tse
2007-02-13 18:02:20 +00:00
parent 05da7b7fda
commit 2bd57a6d30
3 changed files with 5 additions and 3 deletions

View File

@ -122,6 +122,8 @@
#define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
#define ISALPHA(x) (isalpha((int) ((unsigned char)x)))
#define ISPRINT(x) (isprint((int) ((unsigned char)x)))
#define ISUPPER(x) (isupper((int) ((unsigned char)x)))
#define ISLOWER(x) (islower((int) ((unsigned char)x)))
/*