mirror of
https://github.com/kmc-jp/n64-emu.git
synced 2025-04-02 10:21:43 -04:00
12 lines
200 B
C++
12 lines
200 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Utils {
|
|
std::vector<uint8_t> read_binary_file(std::string filepath);
|
|
} // namespace Utils
|
|
|
|
#endif
|