mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 03:23:15 +01:00
17 lines
501 B
C++
17 lines
501 B
C++
#pragma once
|
|
|
|
extern "C"
|
|
{
|
|
#include "../common.h"
|
|
}
|
|
|
|
namespace Path
|
|
{
|
|
utf8 * Append(utf8 * buffer, size_t bufferSize, const utf8 * src);
|
|
utf8 * GetDirectory(utf8 * buffer, size_t bufferSize, const utf8 * path);
|
|
const utf8 * GetFileName(const utf8 * path);
|
|
utf8 * GetFileNameWithoutExtension(utf8 * buffer, size_t bufferSize, const utf8 * path);
|
|
utf8 * GetAbsolute(utf8 * buffer, size_t bufferSize, const utf8 * relativePath);
|
|
bool Equals(const utf8 * a, const utf8 * b);
|
|
}
|