luaur_vm/macros/lua_pushfstring.rs
1use crate::functions::lua_pushfstring_l::lua_pushfstring_l;
2
3#[allow(non_snake_case)]
4#[macro_export]
5macro_rules! lua_pushfstring {
6 ($l:expr, $fmt:expr $(, $($arg:expr),* )? ) => {{
7 $crate::functions::lua_pushfstring_l::lua_pushfstring_l($l, $fmt $(, $($arg),* )?);
8 }};
9}
10
11pub use lua_pushfstring;