Function ncursesw::addwstr[][src]

pub fn addwstr(wstr: &WideString) -> Result<(), NCurseswError>
Expand description

Add/Output a wide character unicode UTF-8 string to the standard screen.

Example

extern crate ncursesw;

use ncursesw::*;

let wide_str = WideString::from_str("Testing..Testing..1..2..3..");

// this will output "Testing..Testing..1..2..3.."
addwstr(&wide_str)?;