bux API Reference 1.9.0
Static library of whatever are seen required in general purpose but not directly supported from Modern C++. Or whatever reusable originated from my side projects.
Loading...
Searching...
No Matches
EZScape.h
Go to the documentation of this file.
1#pragma once
2
3#include <string> // std::string
4#include <string_view> // std::string_view
5
6namespace bux {
7
8//
9// Externals
10//
11std::string easy_escape(std::string_view src);
12std::string easy_unescape(std::string_view src);
13
14} //namespace bux
THE common namespace of bux library.
Definition AtomiX.cpp:3
std::string easy_escape(std::string_view src)
Definition EZScape.cpp:13
std::string easy_unescape(std::string_view src)
Definition EZScape.cpp:28