dmrconfig/src/radio.rs

11 lines
116 B
Rust

extern {
fn radio_list_c();
}
#[no_mangle]
pub extern "C" fn radio_list() {
unsafe {
radio_list_c();
}
}