#include #include using namespace std; void ui_utils::print_base_screen(WINDOW *w) { printw("ComunicTerm"); /* Print Hello World */ // Get screen size int row, col; getmaxyx(w, row, col); const string msg = "Light client"; mvprintw(0, (col-static_cast(msg.length())), msg.c_str()); refresh(); }