mirror of
https://github.com/joel16/PSPickr.git
synced 2024-11-26 21:10:27 +00:00
10 lines
225 B
C++
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);
|
|
}
|