Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/GJDuck/e9patch
/ isxdigit
Function
isxdigit
examples/stdlib.c:2547–2551 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
2545
}
2546
2547
static int isxdigit(int c)
2548
{
2549
return (c >=
'a'
&& c <=
'f'
) || (c >=
'A'
&& c <=
'F'
) ||
2550
(c >=
'0'
&& c <=
'9'
);
2551
}
2552
2553
static int isodigit(int c)
2554
{
Callers
2
getToken
Method · 0.85
scanf_get_hex
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected