Add toascii() to ape

This commit is contained in:
Roberto E. Vargas Caballero 2019-09-09 16:00:06 +01:00
parent e0720a48b0
commit 5e9d8a7b18

View file

@ -50,6 +50,7 @@ extern unsigned char _ctype[];
#ifdef _BSD_EXTENSION
#define isascii(c) (((unsigned int)(c))<0x80)
#define toascii( c ) ((unsigned)(c) & 0x007f)
#endif
#endif /* __CTYPE */