diff options
Diffstat (limited to 'server/src/util/io.h')
| -rw-r--r-- | server/src/util/io.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/util/io.h b/server/src/util/io.h index 4681fbf..6a333bd 100644 --- a/server/src/util/io.h +++ b/server/src/util/io.h @@ -4,5 +4,6 @@ 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); +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 |