diff options
| author | Benedict <benedict@0xb8000.de> | 2017-01-26 12:47:42 +0100 |
|---|---|---|
| committer | Benedict <benedict@0xb8000.de> | 2017-02-21 13:00:27 +0100 |
| commit | 18acbfa8d29fd1ca9c90fb252b735b2901bbe7fa (patch) | |
| tree | 9e994cceb6a3e66eb2e7a11ea79734de0bb02f3f /lib/lib.c | |
| parent | 96447557db2f8a3c2e5f4c32f0cc9d3fb2d5582f (diff) | |
set7: task50: completed
Diffstat (limited to 'lib/lib.c')
| -rw-r--r-- | lib/lib.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -34,7 +34,8 @@ int isprintable(char *string, int length) int i; for(i=0;i<length;i++) { - if(!(isprint(string[i]) || isspace(string[i]))) { + // ` is only for task50 ... + if(!(isprint(string[i]) || isspace(string[i])) || string[i] == '`') { return 0; } } |
