#ifndef CTYPE_H #define CTYPE_H #include "stdint.h" bool isdigit(char c); bool isspace(char c); #endif