const-cstr

Create static C-compatible strings from Rust string literals.

Usage

Cargo.toml: toml [dependencies] const-cstr = "0.1"

Crate root: ```rust

[macrouse] extern crate constcstr;

```

Example

```rust #[macrouse] extern crate constcstr;

use std::os::raw::c_char; use std::ffi::CStr;

constcstr! { HELLOCSTR = "Hello, world!";

 // Multiple declarations can be made with one invocation.
 // GOODNIGHT_CSTR = "Goodnight, sun!";

 // But only with the same visibility:
 // pub GOODNIGHT_CSTR = "Goodnight, sun!";
 // ^~~ Error: expected identifier, found `pub`

}

// Imagine this is an extern "C" function linked from some other lib. unsafe fn printcstring(cstr: *const cchar) { println!("{}", CStr::fromptr(cstr).to_str().unwrap()); }

fn main() { // When just passed a literal, returns an rvalue instead. let goodnightcstr = constcstr!("Goodnight, sun!");

 unsafe {
     print_c_string(HELLO_CSTR.as_ptr());
     print_c_string(goodnight_cstr.as_ptr());
 }

} ```

Prints:

notest Hello, world! Goodnight, sun!

License

Licensed under either of * Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) * MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.