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

bool isspace(const char c)
{
	return (c == ' ' || (c >= 0x09 && c <= 0x0D));
}