Crates.io | libnotcurses-sys |
lib.rs | libnotcurses-sys |
version | 3.11.0 |
source | src |
created_at | 2020-01-15 06:47:09.497622 |
updated_at | 2024-10-03 10:52:26.698891 |
description | Low-level Rust bindings for the notcurses C library. |
homepage | https://nick-black.com/dankwiki/index.php/Notcurses |
repository | https://github.com/dankamongmen/libnotcurses-sys |
max_upload_size | |
id | 198541 |
size | 1,040,509 |
libnotcurses-sys
is a low-level Rust wrapper for the
notcurses C library
It's recommended to use the notcurses higher level bindings.
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(())
}
The latest released version is compatible with notcurses 3.0.11
.
The unreleased version is compatible with notcurses unreleased master branch.
Current major version 3
is considered a development version.