#ifndef PACMANCONF_REPO_HPP #define PACMANCONF_REPO_HPP #include // for string #include // for string_view #include // for vector namespace detail::pacmanconf { bool push_repos_front(const std::string_view& file_path, const std::string_view& value) noexcept; auto get_repo_list(const std::string_view& file_path) noexcept -> std::vector; } // namespace detail::pacmanconf #endif // PACMANCONF_REPO_HPP