Skip to main content

luaur_vm/functions/
lua_singlestep.rs

1use crate::type_aliases::lua_state::lua_State;
2
3#[no_mangle]
4pub unsafe fn lua_singlestep(L: *mut lua_State, enabled: core::ffi::c_int) {
5    (*L).singlestep = enabled != 0;
6}