Files
blankos/src/libc/ctype.c
2024-08-06 13:43:01 +02:00

14 lines
187 B
C

#include "stdint.h"
bool isdigit(char c)
{
return c >= '0' && c <= '9';
}
bool isspace(char c)
{
return c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f' || c == '\r';
}