mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +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
|