Home | History | Annotate | Download | only in mucurses

Lines Matching full:ncols

44  * @v ncols	window width
49 WINDOW *derwin ( WINDOW *parent, int nlines, int ncols,
56 if ( ( (unsigned)ncols > parent->width ) ||
62 child->width = ncols;
116 * @v ncols number of columns
121 WINDOW *newwin ( int nlines, int ncols, int begin_y, int begin_x ) {
126 ( (unsigned)( begin_x + ncols ) > stdscr->width ) )
131 win->width = ncols;
142 * @v ncols window width
147 WINDOW *subwin ( WINDOW *parent, int nlines, int ncols,
154 child = newwin( nlines, ncols, begin_y, begin_x );