mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
14 lines
297 B
C
14 lines
297 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <fnd/memory_blob.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 u8* data, size_t len);
|
||
|
}
|
||
|
}
|