mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
14 lines
251 B
C++
14 lines
251 B
C++
#pragma once
|
|
|
|
#include "TactilityCore.h"
|
|
#include <cstdio>
|
|
|
|
namespace tt::file {
|
|
|
|
long getSize(FILE* file);
|
|
|
|
std::unique_ptr<uint8_t[]> readBinary(const char* filepath, size_t& outSize);
|
|
std::unique_ptr<uint8_t[]> readString(const char* filepath);
|
|
|
|
}
|