* Calls `PercentDecode(str.data(), str.size())` * * @param str Input string to decode, may be empty. * @return Decoded string from `str` */
| 170 | * @return Decoded string from `str` |
| 171 | */ |
| 172 | static std::string PercentDecode(const std::string& str) |
| 173 | { |
| 174 | return PercentDecode(str.data(), str.size()); |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * @brief Decode percent-encoded values from given string |