proc-concat-bytes 0.1.0

Like std::concat but for byte strings
Documentation

Concatenates byte literals

Examples

use proc_concat_bytes::concat_bytes;
let c_str = std::ffi::CStr::from_bytes_with_nul(&concat_bytes!(b"Hello World!", b'\0')[..]).unwrap();