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

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