mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-05 12:18:21 +02:00
13 lines
313 B
C++
13 lines
313 B
C++
#pragma once
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace Utils::String {
|
|
/// @brief escapes a string
|
|
/// @details this function escapes a string so that it look like its c++ representation
|
|
/// @param str the string to escape
|
|
/// @return the escaped string
|
|
std::string escape(const std::string& string);
|
|
}
|