Function ncursesw::addnwstr[][src]

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

Add/Output a wide character unicode UTF-8 string of a given length 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.."
addnwstr(&wide_str, 18)?;