mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-28 06:46:03 +03: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
|