mdelibs/include/MDE/Core/File.h

20 lines
302 B
C
Raw Normal View History

2025-11-16 11:24:56 +09:00
#ifndef __MDE_FILE_H__
2025-11-16 12:01:34 +09:00
#define __MDE_FILE_H__
2025-11-16 11:24:56 +09:00
#include <MDE/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
void MDEFileCopy(const char* src, const char* dst);
2025-11-23 17:23:35 +09:00
char* MDEFileAbsolutePath(const char* path);
char* MDEFileOptimizeAbsolutePath(const char* path);
2025-11-16 11:24:56 +09:00
#ifdef __cplusplus
}
#endif
#endif