mirror of
https://github.com/curl/curl.git
synced 2026-08-25 00:03:33 +03:00
parent
090056522b
commit
489a4c1b48
2 changed files with 7 additions and 4 deletions
|
|
@ -30,10 +30,8 @@
|
|||
#define ISLOWCNTRL(x) ((unsigned char)(x) <= 0x1f)
|
||||
#define IS7F(x) ((x) == 0x7f)
|
||||
|
||||
#define ISLOWPRINT(x) (((x) >= 9) && ((x) <= 0x0d))
|
||||
|
||||
#define ISPRINT(x) (ISLOWPRINT(x) || (((x) >= ' ') && ((x) <= 0x7e)))
|
||||
#define ISGRAPH(x) (ISLOWPRINT(x) || (((x) > ' ') && ((x) <= 0x7e)))
|
||||
#define ISPRINT(x) (((x) >= ' ') && ((x) <= 0x7e))
|
||||
#define ISGRAPH(x) (((x) > ' ') && ((x) <= 0x7e))
|
||||
#define ISCNTRL(x) (ISLOWCNTRL(x) || IS7F(x))
|
||||
#define ISALPHA(x) (ISLOWER(x) || ISUPPER(x))
|
||||
#define ISXDIGIT(x) (ISDIGIT(x) || ISLOWHEXALPHA(x) || ISUPHEXALPHA(x))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue