mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 16:18:33 +00:00
c5e588e6e5
- Previous commits has been reported in the ChangeLog file - hg log has been lost (moved inside ChangeLog) - Old radare1 repository has removed all the libr
26 lines
371 B
C
26 lines
371 B
C
/* radare - LGPL - Copyright 2009 pancake<nopcode.org> */
|
|
|
|
#include <r_bp.h>
|
|
|
|
int r_bp_init(struct r_bp_t *bp)
|
|
{
|
|
return R_TRUE;
|
|
}
|
|
|
|
struct r_bp_t *r_bp_new()
|
|
{
|
|
struct r_bp_t *bp = MALLOC_STRUCT(struct r_bpt);
|
|
r_bp_init(bp);
|
|
return bp;
|
|
}
|
|
|
|
struct r_bp_t *r_bp_free(struct r_bp_t *bp)
|
|
{
|
|
free(bp);
|
|
return NULL;
|
|
}
|
|
|
|
int r_bp_add(struct r_bp_t *bp, u64 addr, int type)
|
|
{
|
|
}
|