static int _is_id_start(char c) { return (_is_alpha(c) || '_' == c); }
static int _is_alNum(char c) { return _is_alpha(c) || _is_numeric(c); }