This commit is contained in:
2025-10-19 22:01:31 +02:00
parent 16306f2325
commit 2b4523d644
101 changed files with 2058 additions and 1564 deletions

View File

@@ -44,7 +44,7 @@ inline void error(const std::string& msg) {
}
// CR
inline void CR() {
inline void cr() {
std::cout << "\n";
}
@@ -52,7 +52,7 @@ inline void CR() {
inline void dots(const std::string& prefix,
const std::string& middle,
const std::string& suffix,
const std::string& suffixColor = GREEN) {
const std::string& suffix_color = GREEN) {
size_t field_width = TOTAL_WIDTH > (prefix.size() + suffix.size())
? TOTAL_WIDTH - prefix.size() - suffix.size()
: 0;
@@ -65,7 +65,7 @@ inline void dots(const std::string& prefix,
}
std::cout << " " << prefix << field_text
<< suffixColor << suffix << RESET
<< suffix_color << suffix << RESET
<< "\n";
}