#pragma once #include "fs_path.hpp" #include namespace fs { struct Mount { fs::Path dir; std::string fsname; std::string type; std::string opts; }; typedef std::vector MountVec; void mounts(fs::MountVec &mounts); }