blob: 88f97de958052e006369af3e8f6f940bdc4c23ae (
plain)
1
2
3
4
5
6
7
8
|
#pragma once
bool read_file(std::string_view path, std::vector<std::byte>& buffer);
bool read_file(std::string_view path, std::string& buffer);
bool write_file(std::string_view path, const std::vector<std::byte>& buffer);
bool write_file(std::string_view path, const std::string& buffer);
std::string_view physfs_error(void);
|