MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / isAlphaNum

Function isAlphaNum

Source/3rdParty/bx/src/string.cpp:49–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47 }
48
49 bool isAlphaNum(char _ch)
50 {
51 return false
52 || isAlpha(_ch)
53 || isNumeric(_ch)
54 ;
55 }
56
57 bool isHexNum(char _ch)
58 {

Callers 5

compileShaderFunction · 0.85
isIdentifierValidFunction · 0.85
urlEncodeFunction · 0.85
strSkipWordFunction · 0.85
findIdentifierMatchFunction · 0.85

Calls 2

isAlphaFunction · 0.85
isNumericFunction · 0.70

Tested by

no test coverage detected