1use std::ffi::{CStr, CString}; 2 3use super::forward_impl; 4 5forward_impl!(CString => Vec<u8>); 6forward_impl!(CStr => Vec<u8>);