Revert "curl_ctype.h: somewhat revolutionary but make ISSPACE and ISBLANK the same"
This reverts commit f22e6e9e95.
This commit is contained in:
parent
857042071d
commit
cf71ecc80f
@ -43,7 +43,7 @@
|
|||||||
#define ISLOWER(x) (((x) >= 'a') && ((x) <= 'z'))
|
#define ISLOWER(x) (((x) >= 'a') && ((x) <= 'z'))
|
||||||
#define ISDIGIT(x) (((x) >= '0') && ((x) <= '9'))
|
#define ISDIGIT(x) (((x) >= '0') && ((x) <= '9'))
|
||||||
#define ISBLANK(x) (((x) == ' ') || ((x) == '\t'))
|
#define ISBLANK(x) (((x) == ' ') || ((x) == '\t'))
|
||||||
#define ISSPACE(x) ISBLANK(x)
|
#define ISSPACE(x) (ISBLANK(x) || (((x) >= 0xa) && ((x) <= 0x0d)))
|
||||||
#define ISURLPUNTCS(x) (((x) == '-') || ((x) == '.') || ((x) == '_') || \
|
#define ISURLPUNTCS(x) (((x) == '-') || ((x) == '.') || ((x) == '_') || \
|
||||||
((x) == '~'))
|
((x) == '~'))
|
||||||
#define ISUNRESERVED(x) (ISALNUM(x) || ISURLPUNTCS(x))
|
#define ISUNRESERVED(x) (ISALNUM(x) || ISURLPUNTCS(x))
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user