#ifndef PATHS_HH #define PATHS_HH #include // IWYU pragma: export #include namespace paths { // Return home directory, goes HOME, /etc/passwd entry, / in that order. std::filesystem::path home(); // Return config directories for reading, in order of priority. std::vector config_dirs(); // Return data directories for reading, in order of priority. std::vector data_dirs(); } // namespace paths #endif // PATHS_HH