| 10 | |
| 11 | |
| 12 | wchar* PointToLastChar(const wchar *Path) |
| 13 | { |
| 14 | size_t Length=wcslen(Path); |
| 15 | return (wchar*)(Length>0 ? Path+Length-1:Path); |
| 16 | } |
| 17 | |
| 18 | |
| 19 | wchar* ConvertPath(const wchar *SrcPath,wchar *DestPath,size_t DestSize) |
no outgoing calls
no test coverage detected