diff options
Diffstat (limited to 'userland/libc/ctype/isprint.c')
-rw-r--r-- | userland/libc/ctype/isprint.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/userland/libc/ctype/isprint.c b/userland/libc/ctype/isprint.c index e6a3d0e..5504ebc 100644 --- a/userland/libc/ctype/isprint.c +++ b/userland/libc/ctype/isprint.c @@ -1,3 +1,5 @@ #include <ctype.h> -int isprint(int c) { return c > 0x20 && 0x7F != c; } +int isprint(int c) { + return c > 0x20 && 0x7F != c; +} |