Function ncursesw::waddch[][src]

pub fn waddch(handle: WINDOW, ch: ChtypeChar) -> Result<(), NCurseswError>
Expand description

Add a chtype (ascii with attributes) character to the current position on the specified window

Example

let ch = ChtypeChar::new(AsciiChar::Asterisk);

waddch(window_handle, ch)?;