mirror of
https://github.com/curl/curl.git
synced 2026-05-30 09:07:33 +03:00
curl_ctype: add space around <= operator in ISSPACE macro
Follow-up to f65f750
Closes #9441
This commit is contained in:
parent
fa26f15b19
commit
f1b76e53ae
1 changed files with 1 additions and 1 deletions
|
|
@ -42,6 +42,6 @@
|
|||
#define ISLOWER(x) (((x) >= 'a') && ((x) <= 'z'))
|
||||
#define ISDIGIT(x) (((x) >= '0') && ((x) <= '9'))
|
||||
#define ISBLANK(x) (((x) == ' ') || ((x) == '\t'))
|
||||
#define ISSPACE(x) (ISBLANK(x) || (((x) >= 0xa) && ((x) <=0x0d)))
|
||||
#define ISSPACE(x) (ISBLANK(x) || (((x) >= 0xa) && ((x) <= 0x0d)))
|
||||
|
||||
#endif /* HEADER_CURL_CTYPE_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue