MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / IsHexDigit

Function IsHexDigit

scintilla/lexers/LexBasic.cxx:81–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81static bool IsHexDigit(int c) {
82 return c < 128 && (character_classification[c] & 16);
83}
84
85static bool IsBinDigit(int c) {
86 return c < 128 && (character_classification[c] & 32);

Callers 1

LexMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected