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

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