| 35 | |
| 36 | template <typename TChar> |
| 37 | static inline TBasicString<TChar> UnescapeC(const TChar* str, size_t len) { |
| 38 | TBasicString<TChar> s; |
| 39 | return UnescapeCImpl(str, len, s); |
| 40 | } |
| 41 | |
| 42 | template <typename TChar> |
| 43 | static inline TBasicString<TChar> EscapeC(TChar ch) { |
no outgoing calls
no test coverage detected