dmrconfig/src/radio.rs

10 lines
86 B
Rust

extern {
fn radio_list_c();
}
pub fn list() {
unsafe {
radio_list_c();
}
}