Skip to content

Commit

Permalink
typo fix for capstone.h
Browse files Browse the repository at this point in the history
  • Loading branch information
aquynh committed Sep 25, 2014
1 parent acbafc6 commit aa58f7f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions include/capstone.h
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,8 @@ size_t cs_disasm(csh handle,
size_t count,
cs_insn **insn);

/* Deprecated function - to be retired in the next version!
/*
Deprecated function - to be retired in the next version!
Use cs_disasm() instead of cs_disasm_ex()
*/
CAPSTONE_EXPORT
Expand All @@ -405,6 +406,7 @@ size_t cs_disasm_ex(csh handle,
uint64_t address,
size_t count,
cs_insn **insn);

/*
Free memory allocated in @insn by cs_disasm()
Expand Down Expand Up @@ -457,7 +459,7 @@ const char *cs_insn_name(csh handle, unsigned int insn_id);
@return: string name of the group, or NULL if @group_id is invalid.
*/
CAPSTONE_EXPORT
const char *cs_group_name(csh handle, unsigned int insn_id);
const char *cs_group_name(csh handle, unsigned int group_id);

/*
Check if a disassembled instruction belong to a particular group.
Expand Down

0 comments on commit aa58f7f

Please sign in to comment.