(ISPRINT): Fixed.
Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -22,7 +22,8 @@ | ... | @@ -22,7 +22,8 @@ |
22 | 22 | ||
23 | #include <mailutils/mailutils.h> | 23 | #include <mailutils/mailutils.h> |
24 | 24 | ||
25 | #define ISPRINT(c) ((c)=='\t'||(c)==' '||(c)=='\n'||((c)>' '&&(c)<128)) | 25 | #define ISPRINT(c) ((c)=='\t'||(c)==' '||(c)=='\n'||\ |
26 | ((unsigned char)(c)>' '&&(unsigned char)(c)<128)) | ||
26 | 27 | ||
27 | void | 28 | void |
28 | print (char *p, int printable) | 29 | print (char *p, int printable) | ... | ... |
-
Please register or sign in to post a comment