Skip to main content

weaveffi_core/
utils.rs

1/// Build the C symbol name for a function: `weaveffi_<module>_<func>`.
2pub fn c_symbol_name(module: &str, func: &str) -> String {
3    format!("weaveffi_{}_{}", module, func)
4}