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

bool iscsym(const char c)
{
	return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || (c == '_'));
}