mirror of
https://github.com/CachyOS/New-Cli-Installer.git
synced 2025-01-23 22:42:31 +08:00
14 lines
456 B
C++
14 lines
456 B
C++
#ifndef PACMANCONF_REPO_HPP
|
|
#define PACMANCONF_REPO_HPP
|
|
|
|
#include <string> // for string
|
|
#include <string_view> // for string_view
|
|
#include <vector> // for vector
|
|
|
|
namespace gucc::detail::pacmanconf {
|
|
bool push_repos_front(std::string_view file_path, std::string_view value) noexcept;
|
|
auto get_repo_list(std::string_view file_path) noexcept -> std::vector<std::string>;
|
|
} // namespace gucc::detail::pacmanconf
|
|
|
|
#endif // PACMANCONF_REPO_HPP
|