summaryrefslogtreecommitdiff
path: root/kernel/lib/isdigit.c
blob: f645093b66f598a30c69140e5c241c5a2c6be8c3 (plain)
1
2
3
4
5
6
#include <lib.h>

int isdigit(int c)
{
	return c >= '0' && c <= '9';
}