mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 18:19:35 +00:00
13 lines
300 B
C++
13 lines
300 B
C++
#pragma once
|
|
#include <string>
|
|
#include <fnd/MemoryBlob.h>
|
|
|
|
namespace fnd
|
|
{
|
|
namespace io
|
|
{
|
|
void readFile(const std::string& path, MemoryBlob& blob);
|
|
void writeFile(const std::string& path, const MemoryBlob& blob);
|
|
void writeFile(const std::string& path, const byte_t* data, size_t len);
|
|
}
|
|
}
|