cellar/include/paths.hpp

11 lines
230 B
C++
Raw Normal View History

2019-05-15 11:53:18 -07:00
#pragma once
#include <string>
namespace cellar {
namespace paths {
extern std::string translate(std::string in_path, bool lazy = false);
extern std::string resolve_drive_letter(std::string in_path);
2019-05-15 11:53:18 -07:00
}
}