mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-13 10:24:45 +00:00
11 lines
218 B
C
11 lines
218 B
C
/* radare - LGPL - Copyright 2010 */
|
|
/* pancake<nopcode.org> */
|
|
|
|
#include <r_anal.h>
|
|
|
|
R_API RAnalCond *r_anal_cond_new() {
|
|
RAnalCond *cond = R_NEW (RAnalCond);
|
|
memset (cond, 0, sizeof (RAnalCond));
|
|
return cond;
|
|
}
|