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