mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-23 13:39:46 +00:00
13 lines
317 B
C
13 lines
317 B
C
/* Capstone Disassembly Engine */
|
|
/* By Giovanni Dante Grazioli, deroad <wargio@libero.it>, 2024 */
|
|
|
|
#ifndef CS_MIPS_MODULE_H
|
|
#define CS_MIPS_MODULE_H
|
|
|
|
#include "../../utils.h"
|
|
|
|
cs_err Mips_global_init(cs_struct *ud);
|
|
cs_err Mips_option(cs_struct *handle, cs_opt_type type, size_t value);
|
|
|
|
#endif // CS_MIPS_MODULE_H
|