diff options
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; } } |
