cellar/include/paths.hpp
2019-05-15 18:03:15 -07:00

11 lines
230 B
C++

#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);
}
}