7 * MuCurses printing functions (no cursor advance)
12 * Add string of single-byte characters and renditions to a window
14 * @v *win window to be rendered in
15 * @v *chstr pointer to first chtype in "string"
16 * @v n max number of chars from chstr to render
17 * @ret rc return status code
19 int waddchnstr ( WINDOW
*win
, const chtype
*chstr
, int n
) {
20 struct cursor_pos pos
;
22 _store_curs_pos( win
, &pos
);
23 _wputchstr( win
, chstr
, NOWRAP
, n
);
24 _restore_curs_pos( win
, &pos
);