Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
toascii.c
Go to the documentation of this file.
1 // Pulled from musl libc
2 
3 #include <ctype.h>
4 
5 int toascii(int c)
6 {
7  return c & 0x7f;
8 }
int toascii(int c)
Converts the given character to ASCII.
Definition: toascii.c:5