SSX3LobbyServer/lib/base/html_escape.hpp

14 lines
249 B
C++
Raw Permalink Normal View History

#include <base/types.hpp>
namespace base {
std::string HtmlEscape(const std::span<u8> buffer);
std::string HtmlEscape(const std::string_view);
/// HTML-escape a string.
std::string HtmlEscape(const std::string& input);
} // namespace base