diff options
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -9,6 +9,11 @@ extern const std::filesystem::path YMakefile; bool is_buildable_by_extension(const std::filesystem::path& p); bool is_compile_unit_source_by_extension(const std::filesystem::path& p); +bool is_dynamic_lib(const std::filesystem::path& p); +bool is_static_lib(const std::filesystem::path& p); +std::filesystem::path soname_shorter(const std::filesystem::path& p); +std::filesystem::path soname_short(const std::filesystem::path& p); + // removes initial "./" std::filesystem::path simplified_path(const std::filesystem::path& p); |