luaur_vm/macros/lua_tostring.rs
1//! Source: `VM/include/lua.h:447` (hand-ported)
2// #define lua_tostring(L, i) lua_tolstring(L, (i), NULL)
3#[allow(non_snake_case)]
4#[macro_export]
5macro_rules! lua_tostring {
6 ($L:expr, $i:expr) => {
7 $crate::functions::lua_tolstring::lua_tolstring($L, $i, core::ptr::null_mut())
8 };
9}
10pub use lua_tostring;