MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / IsCharMatch

Function IsCharMatch

Engine/source/core/strings/findMatch.cpp:95–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93}
94
95inline bool IsCharMatch( char e, char s, bool caseSensitive )
96{
97 return ( ( e == '?' ) || ( caseSensitive && e == s ) || ( dToupper(e) == dToupper(s) ) );
98}
99
100bool FindMatch::isMatch( const char *exp, const char *str, bool caseSensitive )
101{

Callers 1

isMatchMethod · 0.85

Calls 1

dToupperFunction · 0.85

Tested by

no test coverage detected