logmeow/misc.h

9 lines
214 B
C
Raw Normal View History

2023-01-16 04:05:25 +00:00
#pragma once
#include <string>
std::string quote(const std::string& str);
2023-01-17 15:35:08 +00:00
void throw_system_error(int err, const char* what);
void throw_system_error(const char* what);
void throw_system_error(std::string what);