]> granicus.if.org Git - curl/commitdiff
Added ISPRINT() required for src/main.c.
authorGisle Vanem <gvanem@broadpark.no>
Wed, 18 Oct 2006 13:50:23 +0000 (13:50 +0000)
committerGisle Vanem <gvanem@broadpark.no>
Wed, 18 Oct 2006 13:50:23 +0000 (13:50 +0000)
lib/setup_once.h

index 52e12a5be0a103ccbc93bdd1697aaca3af2cf08f..5573cbcb21de564f654920cae37fa28eab3914d4 100644 (file)
 
 
 /*
- * Uppercase macro versions of ANSI/ISO is*() functions/macros which 
+ * Uppercase macro versions of ANSI/ISO is*() functions/macros which
  * avoid negative number inputs with argument byte codes > 127.
  */
 
 #define ISXDIGIT(x) (isxdigit((int) ((unsigned char)x)))
 #define ISGRAPH(x)  (isgraph((int)  ((unsigned char)x)))
 #define ISALPHA(x)  (isalpha((int)  ((unsigned char)x)))
+#define ISPRINT(x)  (isprint((int)  ((unsigned char)x)))
 
 
 #endif /* __SETUP_ONCE_H */