mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-31 00:06:05 +03:00
16 lines
269 B
C++
16 lines
269 B
C++
#ifndef UTIL_FILESYSTEM_HPP
|
|
#define UTIL_FILESYSTEM_HPP
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
void OsCreateDirectory(const char*, int32_t);
|
|
|
|
void OsBuildFontFilePath(const char*, char*, size_t);
|
|
|
|
char* OsPathFindExtensionWithDot(char*);
|
|
|
|
void OpenArchives();
|
|
|
|
#endif
|