1
0
Fork 0
spectre/include/Spectre/System/File.h

13 lines
230 B
C++

#ifndef SPECTRE_SYSTEM_FILE_H
#define SPECTRE_SYSTEM_FILE_H
#include <vector>
#include <string>
namespace sp { namespace file
{
std::vector<unsigned char> read(const std::string& path);
} }
#endif /* SPECTRE_SYSTEM_FILE_H */