1 2 3 4 5 6 7 8 9 10 11 12
#ifndef UTILITY_HH #define UTILITY_HH #include <string> #include <string_view> namespace book_store::utility { auto prompt(std::string_view message) -> std::string; auto clear_cerr() -> void; } // namespace book_store::utility #endif // UTILITY_HH