| 49 | } |
| 50 | |
| 51 | std::wstring Escape(const std::wstring& text) |
| 52 | { |
| 53 | std::wstring escaped; |
| 54 | for (unsigned char ch : WideStringToString(text)) escaped += FormatString(L"%%%02X", (int)ch); |
| 55 | return escaped; |
| 56 | } |
| 57 | |
| 58 | std::string Escape(const std::string& text) |
| 59 | { |
nothing calls this directly
no test coverage detected