This commit is contained in:
Your Name
2025-04-25 13:37:43 +12:00
parent 7d3209cdb2
commit 4d3523a346
10 changed files with 43 additions and 39 deletions

14
src/utils/utils.hpp Normal file
View File

@ -0,0 +1,14 @@
#pragma once
#include <string>
namespace dropshell {
/**
* Prints a formatted title surrounded by a box of dashes.
*
* @param title The title string to display
*/
void maketitle(const std::string& title);
} // namespace dropshell