Home | History | Annotate | Download | only in mucurses

Lines Matching defs:win

19  * @v *win	window to be rendered in
23 int waddch ( WINDOW *win, const chtype ch ) {
24 _wputch( win, ch, WRAP );
31 * @v *win window to be rendered in
36 int waddnstr ( WINDOW *win, const char *str, int n ) {
37 _wputstr( win, str, WRAP, n );
43 WINDOW *win;
50 _wputch( wctx->win, c | wctx->win->attrs, WRAP );
56 * @v *win subject window
61 int vw_printw ( WINDOW *win, const char *fmt, va_list varglist ) {
64 wctx.win = win;
73 * @v *win subject window
78 int wprintw ( WINDOW *win, const char *fmt, ... ) {
83 i = vw_printw ( win, fmt, args );