radare2/libr/bp/bp.c
pancake c5e588e6e5 * Initial import of libr
- 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
2009-02-05 22:08:46 +01:00

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)
{
}