mirror of
https://github.com/CachyOS/New-Cli-Installer.git
synced 2025-02-09 11:47:21 +08:00
18 lines
427 B
C++
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
|