mirror of
https://github.com/curl/curl.git
synced 2026-08-03 01:50:29 +03:00
ctype: remove all use of <ctype.h>, use our own versions
Except in the test servers. Closes #9433
This commit is contained in:
parent
7b66050eae
commit
8dd95da35b
9 changed files with 13 additions and 15 deletions
|
|
@ -281,7 +281,7 @@ static char *c_escape(const char *str, curl_off_t len)
|
|||
strcpy(e, "\\?");
|
||||
e += 2;
|
||||
}
|
||||
else if(!isprint(c)) {
|
||||
else if(!ISPRINT(c)) {
|
||||
msnprintf(e, 5, "\\x%02x", (unsigned)c);
|
||||
e += 4;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue