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