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