mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 19:22:30 +00:00
14 lines
247 B
C++
14 lines
247 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*);
|
||
|
|
|
||
|
|
#endif
|