14 lines
187 B
C
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';
|
|
}
|