New-Cli-Installer/gucc/include/gucc/fs_utils.hpp
2024-06-29 21:05:58 +04:00

18 lines
427 B
C++

#ifndef FS_UTILS_HPP
#define FS_UTILS_HPP
#include <string> // for string
#include <string_view> // for string_view
namespace gucc::fs::utils {
// Get FSTYPE of mountpoint
auto get_mountpoint_fs(std::string_view mountpoint) noexcept -> std::string;
// Get SOURCE of mountpoint
auto get_mountpoint_source(std::string_view mountpoint) noexcept -> std::string;
} // namespace gucc::fs::utils
#endif // FS_UTILS_HPP