Function ncursesw::TABSIZE[][src]

pub fn TABSIZE() -> i32
Expand description

Return the number of columns a tab represents on the terminal.

Example

extern crate ncursesw;

use ncursesw::*;

let tabsize = TABSIZE();

assert!(tabsize > 0);