source: trunk/sys/dietlibc/isgraph.c @ 6

Last change on this file since 6 was 1, checked in by alain, 7 years ago

First import

File size: 187 bytes
Line 
1int __isgraph_ascii ( int ch );
2int __isgraph_ascii ( int ch ) {
3  return (unsigned int)(ch - '!') < 127u - '!';
4}
5
6int isgraph ( int ch ) __attribute__((weak,alias("__isgraph_ascii")));
Note: See TracBrowser for help on using the repository browser.