#include int main(void) { initscr(); start_color(); cbreak(); keypad(stdscr, TRUE); noecho(); init_pair(1, COLOR_CYAN, COLOR_BLACK); attron(COLOR_PAIR(1)); mvhline(10, 0, '-', 20); getch(); endwin(); return 0; }