Create static C-compatible strings from Rust string literals.
Example
extern crate const_cstr;
extern crate libc;
use CStr;
const_cstr!
// Imagine this is an `extern "C"` function linked from some other lib.
unsafe
Prints:
Hello, world!
Goodnight, sun!