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

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