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

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