Compile-time null-terminated string.
Example
use std::ffi::c_str;
let f = c_str!("Hello, world!");
libc::puts(f);
Run this example
Compile-time null-terminated string.
use std::ffi::c_str;
let f = c_str!("Hello, world!");
libc::puts(f);
Run this example