'Ext' is an extension with the leading dot, like L".rar".
| 105 | |
| 106 | // 'Ext' is an extension with the leading dot, like L".rar". |
| 107 | wchar *GetExt(const wchar *Name) |
| 108 | { |
| 109 | return Name==NULL ? NULL:wcsrchr(PointToName(Name),'.'); |
| 110 | } |
| 111 | |
| 112 | |
| 113 | // 'Ext' is an extension without the leading dot, like L"rar". |
no test coverage detected