diff options
| author | Fuwn <[email protected]> | 2024-05-31 00:00:12 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-05-31 00:20:41 -0700 |
| commit | 968e1c4af014b7f40bfaa4f57fcc0f38e5e0d847 (patch) | |
| tree | df80525ad0cc9e4b561bfb0772c30ccc5b64b4a2 /include/book_store/utility.hh | |
| parent | feat: initial commit (diff) | |
| download | cst_136_assignment_eight-main.tar.xz cst_136_assignment_eight-main.zip | |
Diffstat (limited to 'include/book_store/utility.hh')
| -rw-r--r-- | include/book_store/utility.hh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/book_store/utility.hh b/include/book_store/utility.hh new file mode 100644 index 0000000..3971abc --- /dev/null +++ b/include/book_store/utility.hh @@ -0,0 +1,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 |