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

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