MCPcopy Create free account
hub / github.com/SpartanJ/eepp / isBinaryDigit

Function isBinaryDigit

src/eepp/system/parsermatcher.cpp:156–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154}
155
156inline bool isBinaryDigit( char c ) {
157 return c == '0' || c == '1';
158}
159
160inline bool isOctalDigit( char c ) {
161 return c >= '0' && c <= '7';

Callers 2

isValidDigitCharFunction · 0.85
isNumberLiteralFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected