| 865 | } |
| 866 | |
| 867 | std::string EncodeText(std::string text) |
| 868 | { |
| 869 | const std::string_view strView{text}; |
| 870 | std::ostringstream output; |
| 871 | webifc::parsing::p21encode(strView, output); |
| 872 | return output.str(); |
| 873 | } |
| 874 | |
| 875 | std::string DecodeText(std::string text) |
| 876 | { |
nothing calls this directly
no test coverage detected