mirror of
https://github.com/capstone-engine/capstone
synced 2026-08-11 16:26:07 -04:00
* Add workflow to check for C formatting Rename run-clang-tidy.sh for consistency with clang-format script Don't align trailing comments. It leads to unreproducable formatting. Reformat some comments leading in-compilable up code after clang-format Format generated compatibility header. Add clang-format script Be more verbose with clean-up scripts and fail early. Pass clang-format via command line Install clang-format for the HeaderPatcher * Format code with clang-format-17
13 lines
285 B
C
13 lines
285 B
C
/* Capstone Disassembly Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */
|
|
|
|
#ifndef CS_MCDISASSEMBLER_H
|
|
#define CS_MCDISASSEMBLER_H
|
|
|
|
typedef enum DecodeStatus {
|
|
MCDisassembler_Fail = 0,
|
|
MCDisassembler_SoftFail = 1,
|
|
MCDisassembler_Success = 3,
|
|
} DecodeStatus;
|
|
|
|
#endif
|