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

Function IsAlphaNumeric

scintilla/lexlib/CharacterSet.h:125–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123}
124
125inline bool IsAlphaNumeric(int ch) {
126 return
127 ((ch >= '0') && (ch <= '9')) ||
128 ((ch >= 'a') && (ch <= 'z')) ||
129 ((ch >= 'A') && (ch <= 'Z'));
130}
131
132/**
133 * Check if a character is a space.

Callers 6

iswordcharFunction · 0.85
iswordstartFunction · 0.85
isoperatorFunction · 0.85
IsIdentifierCharFunction · 0.85
IsDocCommentStartFunction · 0.85
IsHaskellAlphaNumericFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected