mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-27 07:55:14 +00:00
9 lines
150 B
C
9 lines
150 B
C
#include <stdio.h>
|
|
#include "code.h"
|
|
|
|
int main() {
|
|
RBinJavaObj *o = r_bin_java_new ("/tmp/CON.class");
|
|
printf ("Hello World %p\n", o);
|
|
return 0;
|
|
}
|