1 2 3 4 5 6 7
use crate::functions::str_find_aux::str_find_aux; use crate::type_aliases::lua_state::lua_State; #[no_mangle] pub unsafe fn str_find(l: *mut lua_State) -> core::ffi::c_int { str_find_aux(l, 1) }