Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 297 of file jsutils.c.
Referenced by str_to_number().
{ 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; }