raylib_wasm/shared/
macros.rs

1#[macro_export]
2macro_rules! cstr {
3    ($str: expr) => { format!("{}\0", $str).as_ptr() as *const i8 }
4}