Guitar
rwfile.h
Go to the documentation of this file.
1 #ifndef RWFILE_H
2 #define RWFILE_H
3 
4 #include <vector>
5 #include <stdlib.h>
6 
7 bool readfile(char const *path, std::vector<char> *out, int maxsize);
8 bool writefile(char const *path, char const *ptr, size_t len);
9 
10 #endif // RWFILE_H
bool readfile(char const *path, std::vector< char > *out, int maxsize)
bool writefile(char const *path, char const *ptr, size_t len)
Definition: rwfile.cpp:53