| 176 | } |
| 177 | |
| 178 | SC::Result SC::HttpPercentDecode(StringSpan input, Span<char> storage, StringSpan& output) |
| 179 | { |
| 180 | return scHttpDecodeComponent(input, storage, output, false); |
| 181 | } |
| 182 | |
| 183 | SC::Result SC::HttpFormUrlDecode(StringSpan input, Span<char> storage, StringSpan& output) |
| 184 | { |
nothing calls this directly
no test coverage detected