예제 #1
0
파일: lexer.c 프로젝트: sproates/ocarina
static int _is_id_start(char c) {
  return (_is_alpha(c) || '_' == c);
}
예제 #2
0
파일: flog.c 프로젝트: bilken/Flog
static int _is_alNum(char c)
{
    return _is_alpha(c) || _is_numeric(c);
}