mirror of
https://github.com/open-goal/jak-project
synced 2026-05-25 07:23:19 -04:00
9737dfad34
Resolves #19
16 lines
376 B
C++
16 lines
376 B
C++
#pragma once
|
|
|
|
#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
|