// Ctype implementation for blankos/libc header // Author: xamidev // Licensed under the Unlicense. See the repo below. // https://github.com/xamidev/blankos #ifndef CTYPE_H #define CTYPE_H #include bool isdigit(char c); bool isspace(char c); #endif