mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 05:40:10 +00:00
11 lines
209 B
C
11 lines
209 B
C
#include <stdio.h>
|
|
#include "code.h"
|
|
#include <sdb.h>
|
|
|
|
int main() {
|
|
Sdb *kv = sdb_new(NULL, NULL, 0);
|
|
RBinJavaObj *o = r_bin_java_new ("/tmp/CON.class", 0, kv);
|
|
printf ("Hello World %p\n", o);
|
|
return 0;
|
|
}
|