Tidied xmlconsole

This commit is contained in:
James Booth
2014-04-15 23:45:17 +01:00
parent e6e0a13e89
commit ef776e52ca
5 changed files with 24 additions and 18 deletions

View File

@@ -89,6 +89,14 @@ win_print_line(ProfWin *window, const char show_char, int attrs,
wattroff(window->win, attrs);
}
void
win_print_line_no_time(ProfWin *window, int attrs, const char * const msg)
{
wattron(window->win, attrs);
wprintw(window->win, "%s\n", msg);
wattroff(window->win, attrs);
}
void
win_vprint_line(ProfWin *window, const char show_char, int attrs,
const char * const msg, ...)