pub type lua_CFunction = Option<unsafe extern "C" fn(L: *mut lua_State) -> c_int>;
Expand description
<https://www.lua.org/manual/5.1/manual.html#lua_CFunction >
Aliased Type§
pub enum lua_CFunction {
None,
Some(unsafe extern "C" fn(*mut lua_State) -> i32),
}