MCPcopy 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
2547static int isxdigit(int c)
2548{
2549 return (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F') ||
2550 (c >= '0' && c <= '9');
2551}
2552
2553static int isodigit(int c)
2554{

Callers 2

getTokenMethod · 0.85
scanf_get_hexFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected