mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 22:00:18 +00:00
14 lines
180 B
C
14 lines
180 B
C
#ifndef R2_NAKED_H
|
|
#define R2_NAKED_H
|
|
|
|
extern "C" {
|
|
|
|
void *r_core_new();
|
|
char *r_core_cmd_str(void *p, const char *cmd);
|
|
void r_core_free(void* core);
|
|
void free(void*);
|
|
|
|
}
|
|
|
|
#endif
|