Newer
Older
UbixOS / Dump / hybos / lib / char / isdigit.c
@cwolsen cwolsen on 31 Oct 2018 91 bytes Big Dump
#include <stdbool.h>

bool isdigit(const char c)
{
	return (c >= '0' && c <= '9');
}