10 lines
160 B
C++
10 lines
160 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace cellar {
|
||
|
namespace paths {
|
||
|
extern std::string translate(std::string in_path, bool lazy = false);
|
||
|
}
|
||
|
}
|