Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
c255ceba
...
c255ceba0afb0830fa679c8849fbf6cf96ab81a7
authored
2003-08-28 19:42:34 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(ISPRINT): Fixed.
1 parent
fe030a99
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
examples/decode2047.c
examples/decode2047.c
View file @
c255ceb
...
...
@@ -22,7 +22,8 @@
#include <mailutils/mailutils.h>
#define ISPRINT(c) ((c)=='\t'||(c)==' '||(c)=='\n'||((c)>' '&&(c)<128))
#define ISPRINT(c) ((c)=='\t'||(c)==' '||(c)=='\n'||\
((unsigned char)(c)>' '&&(unsigned char)(c)<128))
void
print
(
char
*
p
,
int
printable
)
...
...
Please
register
or
sign in
to post a comment