pub unsafe extern "C" fn ud_insn_mnemonic(
ud: *const ud,
) -> ud_mnemonic_code
Expand description
Returns the instruction mnemonic in the form of an enumerated constant
(ud_mnemonic_code
). As a convention all mnemonic constants are
composed by prefixing standard instruction mnemonics with UD_I
. For
example, the enumerations for mov, xor and jmp are UD_Imov
, UD_Ixor
,
and UD_Ijmp
, respectively.