nstool/lib/libfnd/include/fnd/io.h

14 lines
300 B
C
Raw Normal View History

#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);
2018-03-22 05:26:22 +00:00
void writeFile(const std::string& path, const byte_t* data, size_t len);
}
}