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

bool isctrl(const char c)
{
	return (!(c >= ' ' && c <= '~'));
}