Home
last modified time | relevance | path

Searched refs:remcols (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libcurses/screen/
H A Dwaddchnstr.c54 int remcols; in waddchnstr() local
60 remcols = win->_maxx - my_x; in waddchnstr()
61 while (*string && remcols) { in waddchnstr()
64 if (remcols < sw) in waddchnstr()
70 remcols -= sw; in waddchnstr()
73 remcols = win->_maxx - my_x; in waddchnstr()
74 while ((*string) && (remcols > 0) && (ncols > 0)) { in waddchnstr()
77 if ((remcols < sw) || (ncols < ew)) in waddchnstr()
83 remcols -= sw; in waddchnstr()
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_subr.c660 int remcols; local
677 if ((mc_wrap) == 1 && (remcols = (WCOLS - (vcntcol % WCOLS))) < cols)
678 vcntcol += remcols;