summaryrefslogtreecommitdiff
path: root/include/book_store/utility.hh
blob: 3971abcdb6e54b5ec4c4acd0b5e4ddcca842e1ec (plain) (blame)
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