| 5 | static int mwcsnicompc(const wchar *Str1,const wchar *Str2,size_t N,bool ForceCase); |
| 6 | |
| 7 | inline uint touppercw(uint ch,bool ForceCase) |
| 8 | { |
| 9 | if (ForceCase) |
| 10 | return ch; |
| 11 | #if defined(_UNIX) |
| 12 | return ch; |
| 13 | #else |
| 14 | return toupperw(ch); |
| 15 | #endif |
| 16 | } |
| 17 | |
| 18 | |
| 19 | bool CmpName(const wchar *Wildcard,const wchar *Name,int CmpMode) |