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