~jonls/libdisarm/trunk

« back to all changes in this revision

Viewing changes to src/libdisarm/print.h

  • Committer: Jon Lund Steffensen
  • Date: 2007-12-13 22:56:30 UTC
  • Revision ID: jonlst@gmail.com-20071213225630-racehd5v3x4z8hu7
add a generic way to get instruction args.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
DA_BEGIN_DECLS
29
29
 
30
 
void da_instr_fprint(FILE *f, const da_instr_t *instr, da_addr_t addr);
 
30
void da_instr_fprint(FILE *f, const da_instr_t *instr,
 
31
                     const da_instr_args_t *args, da_addr_t addr);
31
32
 
32
33
DA_END_DECLS
33
34