FENIX_libc/ctype/toascii.c
2020-12-13 04:55:41 -06:00

5 lines
62 B
C

#include <ctype.h>
int toascii(int c) {
return (c & 0x7f)
}