Type Alias zend_multibyte_functions
Source pub type zend_multibyte_functions = _zend_multibyte_functions;
struct zend_multibyte_functions {
pub provider_name: *const i8,
pub encoding_fetcher: Option<unsafe extern "C" fn(_: *const i8) -> *const _zend_encoding>,
pub encoding_name_getter: Option<unsafe extern "C" fn(_: *const _zend_encoding) -> *const i8>,
pub lexer_compatibility_checker: Option<unsafe extern "C" fn(_: *const _zend_encoding) -> bool>,
pub encoding_detector: Option<unsafe extern "C" fn(_: *const u8, _: usize, _: *mut *const _zend_encoding, _: usize) -> *const _zend_encoding>,
pub encoding_converter: Option<unsafe extern "C" fn(_: *mut *mut u8, _: *mut usize, _: *const u8, _: usize, _: *const _zend_encoding, _: *const _zend_encoding) -> usize>,
pub encoding_list_parser: Option<unsafe extern "C" fn(_: *const i8, _: usize, _: *mut *mut *const _zend_encoding, _: *mut usize, _: bool) -> i32>,
pub internal_encoding_getter: Option<unsafe extern "C" fn() -> *const _zend_encoding>,
pub internal_encoding_setter: Option<unsafe extern "C" fn(_: *const _zend_encoding) -> i32>,
}