blob: e8ef3f083fb500d8bd2d27293f61e6b899564728 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#pragma once
namespace io {
extern std::shared_ptr<spdlog::logger> logger;
void init(const bool& to_file);
void read_file(const std::string_view name, std::vector<char>& out);
}; // namespace io
|