mirror of
https://github.com/curl/curl.git
synced 2026-05-17 13:36:21 +03:00
replace isprint() with ISPRINT()
This commit is contained in:
parent
54aca3c5ec
commit
6b6fe2a4d5
1 changed files with 1 additions and 1 deletions
|
|
@ -223,7 +223,7 @@ static int setcharset(unsigned char **p, unsigned char *charset)
|
|||
}
|
||||
else if(c == '\\') {
|
||||
c = *(++(*p));
|
||||
if(isprint(c)) {
|
||||
if(ISPRINT(c)) {
|
||||
charset[c] = 1;
|
||||
(*p)++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue