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

bool isascii(const unsigned char c)
{
	return (c >= 0x00 && c <= 0x7F);
}