PSPickr/include/fs.hpp
2022-10-17 21:29:39 -04:00

10 lines
225 B
C++

#pragma once
#include <string>
namespace FS {
bool FileExists(const std::string &path);
int ReadFile(const std::string &path, void *buf, int size);
int WriteFile(const std::string &path, void *buf, int size);
}