mirror of
https://github.com/open-goal/jak-project
synced 2026-05-28 00:16:20 -04:00
de5aa7e5e4
* move things to the common library and remove next_dir * fix for windows * one last windows fix * last fix for real this time * debug listener test * fix listener threading bug
14 lines
362 B
C++
14 lines
362 B
C++
#ifndef JAK_V2_FILEIO_H
|
|
#define JAK_V2_FILEIO_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
std::string combine_path(const std::string& parent, const std::string& child);
|
|
std::string base_name(const std::string& filename);
|
|
void init_crc();
|
|
uint32_t crc32(const uint8_t* data, size_t size);
|
|
uint32_t crc32(const std::vector<uint8_t>& data);
|
|
|
|
#endif // JAK_V2_FILEIO_H
|