MCPcopy 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
85static inline bool isxdigit(char c) {
86 return (c >= '0' && c <= '9') || ((c & ~' ') >= 'A' && (c & ~' ') <= 'F');
87}
88
89static inline int char2int(char c) {
90 if (c <= '9')

Callers 1

jsonParseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected