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

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