Newer
Older
ubixos / Dump / hybos / lib / char / ispunct.c
@cwolsen cwolsen on 31 Oct 2018 167 bytes Big Dump
#include <stdbool.h>

bool ispunct(const char c)
{
	return ((c >= '!' && c<= '/') || (c >= ':' && c<= '@') || (c >= '[' && c<= '`') || (c >= '{' && c<= '~'));
}