h2-mod/src/client/component/filesystem.hpp
2022-03-19 23:06:00 +01:00

8 lines
202 B
C++

#pragma once
namespace filesystem
{
std::unordered_set<std::string>& get_search_paths();
std::string read_file(const std::string& path);
bool read_file(const std::string& path, std::string* data);
}