11 lines
338 B
C++
11 lines
338 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <system_error>
|
|
|
|
std::string quote(const std::string& str);
|
|
std::system_error make_system_error(int err, const char* what);
|
|
std::system_error make_system_error(int err, std::string what);
|
|
std::system_error make_system_error(const char* what);
|
|
std::system_error make_system_error(std::string what);
|