Lines Matching refs:stdscr
130 extern WINDOW *stdscr; /* Standard screen. */
145 #define addbytes(s, n) __waddbytes(stdscr, s, n, 0)
146 #define addch(ch) waddch(stdscr, ch)
147 #define addnstr(s, n) waddnstr(stdscr, s, n)
148 #define addstr(s) __waddbytes(stdscr, s, strlen(s), 0)
149 #define clear() wclear(stdscr)
150 #define clrtobot() wclrtobot(stdscr)
151 #define clrtoeol() wclrtoeol(stdscr)
152 #define delch() wdelch(stdscr)
153 #define deleteln() wdeleteln(stdscr)
154 #define erase() werase(stdscr)
155 #define getch() wgetch(stdscr)
156 #define getstr(s) wgetstr(stdscr, s)
157 #define inch() winch(stdscr)
158 #define insch(ch) winsch(stdscr, ch)
159 #define insertln() winsertln(stdscr)
160 #define move(y, x) wmove(stdscr, y, x)
161 #define refresh() wrefresh(stdscr)
162 #define standend() wstandend(stdscr)
163 #define standout() wstandout(stdscr)
168 #define mvaddbytes(y, x, s, n) mvwaddbytes(stdscr, y, x, s, n)
169 #define mvaddch(y, x, ch) mvwaddch(stdscr, y, x, ch)
170 #define mvaddnstr(y, x, s, n) mvwaddnstr(stdscr, y, x, s, n)
171 #define mvaddstr(y, x, s) mvwaddstr(stdscr, y, x, s)
172 #define mvdelch(y, x) mvwdelch(stdscr, y, x)
173 #define mvgetch(y, x) mvwgetch(stdscr, y, x)
174 #define mvgetstr(y, x, s) mvwgetstr(stdscr, y, x, s)
175 #define mvinch(y, x) mvwinch(stdscr, y, x)
176 #define mvinsch(y, x, c) mvwinsch(stdscr, y, x, c)