[][src]Macro ffi_convert::convert_to_nullable_c_string

macro_rules! convert_to_nullable_c_string {
    ($opt:expr) => { ... };
}

A macro to convert an Option<String> to a C-compatible representation : a raw pointer to libc::c_char if the Option enum is of variant Some, or a null pointer if the Option enum is of variant None.