pub type SDL_calloc_func = Option<unsafe extern "C" fn(nmemb: usize, size: usize) -> *mut c_void>;
enum SDL_calloc_func { None, Some(unsafe extern "C" fn(_: usize, _: usize) -> *mut c_void), }
No value.
Some value of type T.
T