2020-05-17 17:54:58 -04:00
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
2024-08-06 23:49:32 -04:00
|
|
|
#include <cstdint>
|
2020-05-17 17:54:58 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
FILE *fopen_utf8(const char *path, const char *options);
|
2024-08-06 23:49:32 -04:00
|
|
|
int fseek_int64(FILE *f, int64_t offset, int origin);
|
|
|
|
|
int64_t ftell_int64(FILE *f);
|
2020-05-17 17:54:58 -04:00
|
|
|
int fputs_utf8(const char *str, FILE *f);
|
|
|
|
|
int mkdir_utf8(const char *path);
|
|
|
|
|
void TerminateDirectoryPath(std::string &path);
|
|
|
|
|
void ScanDirectoryForExtension(std::vector<std::string>& outPaths, const char *path, const char *ending, bool recursive);
|