mirror of
https://github.com/CachyOS/New-Cli-Installer.git
synced 2025-01-23 14:32:22 +08:00
16 lines
377 B
C++
16 lines
377 B
C++
#ifndef MISC_HPP
|
|
#define MISC_HPP
|
|
|
|
#include <string_view> // for string_view
|
|
|
|
namespace tui {
|
|
bool confirm_mount([[maybe_unused]] const std::string_view& part_user, bool quite = false);
|
|
void set_fsck_hook() noexcept;
|
|
void set_cache() noexcept;
|
|
void edit_configs() noexcept;
|
|
void edit_pacman_conf() noexcept;
|
|
void logs_menu() noexcept;
|
|
} // namespace tui
|
|
|
|
#endif // MISC_HPP
|