radare2/libr/anal/cycles.c

23 lines
431 B
C

/* radare - LGPL - Copyright 2014 - 2015 - condret */
#include <r_anal.h>
#include <r_list.h>
#include <r_types.h>
R_API RAnalCycleFrame *r_anal_cycle_frame_new() {
RAnalCycleFrame *cf = R_NEW0 (RAnalCycleFrame);
if (cf) {
if (!(cf->hooks = r_list_new ())) {
free (cf);
cf = NULL;
}
}
return cf;
}
R_API void r_anal_cycle_frame_free(RAnalCycleFrame *cf) {
if (!cf) return;
r_list_free (cf->hooks);
free (cf);
}