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:
@ -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)))
|
||||
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user