mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-29 13:03:42 +01:00
8 lines
131 B
C
8 lines
131 B
C
|
#pragma once
|
||
|
|
||
|
static int isxdigit(int c)
|
||
|
{
|
||
|
return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') ||
|
||
|
(c >= 'a' && c <= 'f');
|
||
|
}
|