| 213 | } |
| 214 | |
| 215 | char* CGIUnescape(char* to, const char* from) { |
| 216 | return Unescape(to, FixZero(from), TCStringEndIterator(), TFromHexZeroTerm()); |
| 217 | } |
| 218 | |
| 219 | char* CGIUnescape(char* to, const char* from, size_t len) { |
| 220 | return Unescape(to, from, from + len, TFromHexLenLimited(from + len)); |
no test coverage detected