forked from capstone-engine/capstone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename some C header guards to be without _ as prefix to follow namin…
…g convention of C language. suggested by Markus Elfring
- Loading branch information
Showing
8 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/* Capstone Disassembler Engine */ | ||
/* By Nguyen Anh Quynh <[email protected]>, 2013> */ | ||
|
||
#ifndef __CS_MCDISASSEMBLER_H__ | ||
#define __CS_MCDISASSEMBLER_H__ | ||
#ifndef CS_MCDISASSEMBLER_H | ||
#define CS_MCDISASSEMBLER_H | ||
|
||
typedef enum DecodeStatus { | ||
MCDisassembler_Fail = 0, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,8 @@ | |
/* Capstone Disassembler Engine */ | ||
/* By Nguyen Anh Quynh <[email protected]>, 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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/* Capstone Disassembler Engine */ | ||
/* By Nguyen Anh Quynh <[email protected]>, 2013> */ | ||
|
||
#ifndef __CS_PRIV_H__ | ||
#define __CS_PRIV_H__ | ||
#ifndef CS_PRIV_H | ||
#define CS_PRIV_H | ||
|
||
#include <capstone.h> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>, 2013> */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>, 2013> */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>, 2013> */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>, 2013> */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/* Capstone Disassembler Engine */ | ||
/* By Nguyen Anh Quynh <[email protected]>, 2013> */ | ||
|
||
#ifndef __CS_UTILS_H__ | ||
#define __CS_UTILS_H__ | ||
#ifndef CS_UTILS_H | ||
#define CS_UTILS_H | ||
|
||
#include <stdbool.h> | ||
|
||
|