Skip to main content

luaur_vm/macros/
hashstr.rs

1#[allow(non_snake_case)]
2#[macro_export]
3macro_rules! hashstr {
4    ($t:expr, $str:expr) => {
5        $crate::macros::hashpow_2::hashpow2!($t, unsafe { (*$str).hash })
6    };
7}
8
9pub use hashstr;