Replace is*() macros with our own IS*() ones.

This commit is contained in:
Yang Tse 2006-10-23 19:14:54 +00:00
parent ef769500d4
commit 4ec9316155
4 changed files with 6 additions and 5 deletions

View File

@ -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

View File

@ -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;

View File

@ -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);

View File

@ -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 */