Crate API MSRV: 1.58.1 Lines Of Code

libnotcurses-sys is a low-level Rust wrapper for the notcurses C library

Example

```rust use libnotcurses_sys::*;

fn main() -> NcResult<()> { let nc = unsafe { Nc::new_cli()? }; let stdplane = unsafe { nc.stdplane() }; stdplane.putstr("\nhello world!\n")?; nc.render()?; unsafe { nc.stop()? }; Ok(()) } ```

Versioning

Current version 3.6.0 is compatible with notcurses 3.0.8.

Current major version 3 is considered a development version