You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
515 B
20 lines
515 B
#pragma once |
|
#include <string> |
|
#include <vector> |
|
#include <fstream> |
|
|
|
namespace utils |
|
{ |
|
inline void open_binary_file(const std::string& file, std::vector<uint8_t>& data) |
|
{ |
|
std::ifstream fstr(file, std::ios::binary); |
|
fstr.unsetf(std::ios::skipws); |
|
fstr.seekg(0, std::ios::end); |
|
|
|
const auto file_size = fstr.tellg(); |
|
|
|
fstr.seekg(NULL, std::ios::beg); |
|
data.reserve(static_cast<uint32_t>(file_size)); |
|
data.insert(data.begin(), std::istream_iterator<uint8_t>(fstr), std::istream_iterator<uint8_t>()); |
|
} |
|
} |