MCPcopy Create free account
hub / github.com/OpenDriveLab/OpenLane / isdigit

Function isdigit

eval/CIPO_evaluation/common/gason.cpp:81–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81static inline bool isdigit(char c) {
82 return c >= '0' && c <= '9';
83}
84
85static inline bool isxdigit(char c) {
86 return (c >= '0' && c <= '9') || ((c & ~' ') >= 'A' && (c & ~' ') <= 'F');

Callers 2

string2doubleFunction · 0.85
jsonParseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected