Replace is*() macros with our own IS*() ones.
authorYang Tse <yangsita@gmail.com>
Mon, 23 Oct 2006 19:14:54 +0000 (19:14 +0000)
committerYang Tse <yangsita@gmail.com>
Mon, 23 Oct 2006 19:14:54 +0000 (19:14 +0000)
tests/server/getpart.c
tests/server/sockfilt.c
tests/server/sws.c
tests/server/tftpd.c

index 85bf3ed..f426aad 100644 (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
index 66c5e4b..78be45e 100644 (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;
index 7f9091f..fa0561b 100644 (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);
index c234dbf..7120c15 100644 (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 */