did astyle on the source files

This commit is contained in:
2024-07-05 12:14:34 -04:00
parent 74de68cf0d
commit 7919c7dbfe
16 changed files with 46 additions and 423 deletions

View File

@ -17,14 +17,16 @@ void cursor::show() const {
refresh();
}
void cursor::print_char(const position &pos, const char ch, const int attrs) const {
attrset(attrs);
mvaddch(pos.y,pos.x,ch);
void cursor::print_char(const position &pos, const char ch,
const int attrs) const {
attrset(attrs);
mvaddch(pos.y, pos.x, ch);
}
void cursor::print_str(const position &pos, const std::string str, const int attrs) const {
attrset(attrs);
mvaddstr(pos.y, pos.x, str.c_str());
void cursor::print_str(const position &pos, const std::string str,
const int attrs) const {
attrset(attrs);
mvaddstr(pos.y, pos.x, str.c_str());
}
bool check_terminal_size() {