#ifndef CTYPE_H #define CTYPE_H static inline int isprint(int c) { return (unsigned)c - 0x20 < 0x5f; } #endif // CTYPE_H