HhhOS/include/std/ctype.h
2021-08-17 12:45:35 +03:00

8 lines
99 B
C

#pragma once
#include <stdbool.h>
inline int isdigit(int c) {
return c >= '0' && c <= '9';
}