toascii.c - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       toascii.c (76B)
       ---
            1 #include <ctype.h>
            2 #undef toascii
            3 
            4 int
            5 toascii(int c)
            6 {
            7         return c & 0x7f;
            8 }