Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 139 of file lex.c.
Referenced by parse_numeric_literal(), and unescape().
{ if('0' <= c && c <= '9') return c-'0'; if('a' <= c && c <= 'f') return c-'a'+10; if('A' <= c && c <= 'F') return c-'A'+10; return -1; }