mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-23 13:39:46 +00:00
rename some C header guards to be without _ as prefix to follow naming convention of C language. suggested by Markus Elfring
This commit is contained in:
parent
57ab21b558
commit
ae3649ff71
@ -1,8 +1,8 @@
|
||||
/* Capstone Disassembler Engine */
|
||||
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
|
||||
|
||||
#ifndef __CS_MCDISASSEMBLER_H__
|
||||
#define __CS_MCDISASSEMBLER_H__
|
||||
#ifndef CS_MCDISASSEMBLER_H
|
||||
#define CS_MCDISASSEMBLER_H
|
||||
|
||||
typedef enum DecodeStatus {
|
||||
MCDisassembler_Fail = 0,
|
||||
|
4
MCInst.h
4
MCInst.h
@ -16,8 +16,8 @@
|
||||
/* Capstone Disassembler Engine */
|
||||
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
|
||||
|
||||
#ifndef __CS_MC_MCINST_H
|
||||
#define __CS_MC_MCINST_H
|
||||
#ifndef CS_MCINST_H
|
||||
#define CS_MCINST_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
@ -1,8 +1,8 @@
|
||||
/* Capstone Disassembler Engine */
|
||||
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
|
||||
|
||||
#ifndef __CS_PRIV_H__
|
||||
#define __CS_PRIV_H__
|
||||
#ifndef CS_PRIV_H
|
||||
#define CS_PRIV_H
|
||||
|
||||
#include <capstone.h>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef __CS_ARM_H__
|
||||
#define __CS_ARM_H__
|
||||
#ifndef CS_ARM_H
|
||||
#define CS_ARM_H
|
||||
|
||||
/* Capstone Disassembler Engine */
|
||||
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef __CS_ARM64_H__
|
||||
#define __CS_ARM64_H__
|
||||
#ifndef CS_ARM64_H
|
||||
#define CS_ARM64_H
|
||||
|
||||
/* Capstone Disassembler Engine */
|
||||
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef __CS_H__
|
||||
#define __CS_H__
|
||||
#ifndef CAPSTONE_ENGINE_H
|
||||
#define CAPSTONE_ENGINE_H
|
||||
|
||||
/* Capstone Disassembler Engine */
|
||||
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef __CS_MIPS_H__
|
||||
#define __CS_MIPS_H__
|
||||
#ifndef CS_MIPS_H
|
||||
#define CS_MIPS_H
|
||||
|
||||
/* Capstone Disassembler Engine */
|
||||
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
|
||||
|
Loading…
Reference in New Issue
Block a user