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