11 lines
203 B
C
11 lines
203 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
#include <exception>
|
||
|
|
||
|
extern std::string log_entries;
|
||
|
|
||
|
void log(std::string action, const std::exception& e);
|
||
|
std::string quote(const std::string& str);
|