mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-15 20:32:28 +00:00
12 lines
200 B
C++
12 lines
200 B
C++
|
|
#ifndef UTIL_FILESYSTEM_HPP
|
||
|
|
#define UTIL_FILESYSTEM_HPP
|
||
|
|
|
||
|
|
#include <cstddef>
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
void OsBuildFontFilePath(const char*, char*, size_t);
|
||
|
|
|
||
|
|
char* OsPathFindExtensionWithDot(char*);
|
||
|
|
|
||
|
|
#endif
|