Function ncursesw::add_wch[][src]

pub fn add_wch(wch: ComplexChar) -> Result<(), NCurseswError>
Expand description

Add/Output a complex character to the standard screen.

Example

extern crate ncursesw;

use ncursesw::*;
use ncursesw::normal::*;

let color_pair0 = ColorPair::default();
let attrs = Attributes::default();

let complex_char = ComplexChar::from_char('A', &attrs, &color_pair0)?;

add_wch(complex_char)?;