Ken Van Hoeylandt e4206e8637
Compiler warning cleanup (#113)
Cleanup + expose more methods for external ELFs
2024-12-08 19:59:01 +01:00

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);
}