Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/OpenDriveLab/OpenLane
/ isxdigit
Function
isxdigit
eval/CIPO_evaluation/common/gason.cpp:85–87 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
83
}
84
85
static inline bool isxdigit(char c) {
86
return (c >=
'0'
&& c <=
'9'
) || ((c & ~
' '
) >=
'A'
&& (c & ~
' '
) <=
'F'
);
87
}
88
89
static inline int char2int(char c) {
90
if (c <=
'9'
)
Callers
1
jsonParse
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected