r_core 0.1.0

Rust bindings for radare2's r_core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// pub mod r_asm;
// mod r_asm;
use r_core::*;

fn main() {
    println!("Hello RCore");
    unsafe {
        let c = r_core_new();
        let pangram = "?E Hello World\x00".as_ptr() as *const i8;
        r_core_cmd0(c, pangram);
        r_cons_flush();
        r_core_free(c);
    }
}