Crate cluCStr

source ·
Expand description

Safe and efficient creation of “CStr” with zero-byte checking and support for concatenating multiple values.

§Note:

You can use c"wow" since Rust 1.77.0 instead of cstr!("wow") from this crate. This new feature provides more concise code and faster compilation. If you are using an older Rust API (like 1.66), this crate will still be relevant for some time.

§Example:

use cluCStr::cstr;
use core::ffi::CStr;

fn main() {
	let cstr = cstr!(b"How are you?");
	
	assert_eq!(cstr.to_bytes_with_nul(), b"How are you?\0");
}

Macros§

  • Safe and efficient creation of “CStr” with zero-byte checking and support for concatenating multiple values.