Newer
Older
ubixos / Dump / hybos / lib / char / isgraph.c
@Christopher W. Olsen Christopher W. Olsen on 5 Nov 2018 99 bytes Sync
#include <stdbool.h>

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