Skip to main content

luaur_vm/macros/
lua_tounsigned.rs

1use crate::functions::lua_tounsignedx::lua_tounsignedx;
2
3#[allow(non_upper_case_globals)]
4pub const LUA_TOUNSIGNED: () = ();
5
6#[allow(non_snake_case)]
7#[macro_export]
8macro_rules! lua_tounsigned {
9    ($l:expr, $i:expr) => {
10        unsafe {
11            $crate::functions::lua_tounsignedx::lua_tounsignedx($l, $i, core::ptr::null_mut())
12        }
13    };
14}
15
16pub use lua_tounsigned;