10 lines
205 B
C++
Executable File
10 lines
205 B
C++
Executable File
#pragma once
|
|
#include <filesystem>
|
|
|
|
// Simple file to rename path for easier usage
|
|
|
|
namespace Deer {
|
|
using Path = std::filesystem::path;
|
|
|
|
Path toLowerCasePath(const Path& inputPath);
|
|
} // namespace Deer
|