Gyoji Compiler
Loading...
Searching...
No Matches
xml.hpp
1#pragma once
2
3#include <string>
4
5namespace Gyoji::misc {
6
7 // Hacks because we don't have a 'proper' xml library.
8 std::string xml_to_cdata(const std::string & str);
9 std::string xml_escape_attribute(const std::string & str);
10 std::string xml_escape_whitespace(const std::string & str);
11
12};