Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
isprint.c
Go to the documentation of this file.
1 // Pulled from musl libc, locale support removed
2 
3 #include <ctype.h>
4 
5 int isprint(int c)
6 {
7  return (unsigned)c - 0x20 < 0x5f;
8 }
int isprint(int c)
Checks if the given character can be printed.
Definition: isprint.c:5