mirror of
https://github.com/curl/curl.git
synced 2025-03-31 16:00:35 +08:00
Replace is*() macros with our own IS*() ones.
This commit is contained in:
parent
ef769500d4
commit
4ec9316155
@ -37,8 +37,9 @@
|
||||
/* include memdebug.h last */
|
||||
#include "memdebug.h"
|
||||
|
||||
#define EAT_SPACE(ptr) while( ptr && *ptr && isspace((int)*ptr) ) ptr++
|
||||
#define EAT_WORD(ptr) while( ptr && *ptr && !isspace((int)*ptr) && ('>' != *ptr)) ptr++
|
||||
#define EAT_SPACE(ptr) while( ptr && *ptr && ISSPACE(*ptr) ) ptr++
|
||||
#define EAT_WORD(ptr) while( ptr && *ptr && !ISSPACE(*ptr) && \
|
||||
('>' != *ptr)) ptr++
|
||||
|
||||
#ifdef DEBUG
|
||||
#define show(x) printf x
|
||||
|
@ -119,7 +119,7 @@ static void lograw(unsigned char *buffer, ssize_t len)
|
||||
optr += 2;
|
||||
break;
|
||||
default:
|
||||
sprintf(optr, "%c", (isgraph(ptr[i]) || ptr[i]==0x20) ?ptr[i]:'.');
|
||||
sprintf(optr, "%c", (ISGRAPH(ptr[i]) || ptr[i]==0x20) ?ptr[i]:'.');
|
||||
width++;
|
||||
optr++;
|
||||
break;
|
||||
|
@ -242,7 +242,7 @@ int ProcessRequest(struct httprequest *req)
|
||||
ptr++; /* skip the slash */
|
||||
|
||||
/* skip all non-numericals following the slash */
|
||||
while(*ptr && !isdigit((int)*ptr))
|
||||
while(*ptr && !ISDIGIT(*ptr))
|
||||
ptr++;
|
||||
|
||||
req->testno = strtol(ptr, &ptr, 10);
|
||||
|
@ -668,7 +668,7 @@ static int validate_access(struct testcase *test,
|
||||
ptr++; /* skip the slash */
|
||||
|
||||
/* skip all non-numericals following the slash */
|
||||
while(*ptr && !isdigit((int)*ptr))
|
||||
while(*ptr && !ISDIGIT(*ptr))
|
||||
ptr++;
|
||||
|
||||
/* get the number */
|
||||
|
Loading…
x
Reference in New Issue
Block a user