diff options
author | David Phillips <david@sighup.nz> | 2018-08-06 01:03:06 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2018-08-06 01:03:06 +1200 |
commit | 5652b840200cada7686196cffc1c7c62b2b91ed9 (patch) | |
tree | b0df69a486da1b508741721d584122eaa1c00569 | |
parent | 71dc99170a8dbc126f762f42500567a438420a21 (diff) | |
download | hence-5652b840200cada7686196cffc1c7c62b2b91ed9.tar.xz |
Prefix header guards
-rw-r--r-- | common.h | 4 | ||||
-rw-r--r-- | error.h | 5 | ||||
-rw-r--r-- | gate.h | 4 | ||||
-rw-r--r-- | logic.h | 4 | ||||
-rw-r--r-- | parse.h | 5 |
5 files changed, 16 insertions, 6 deletions
@@ -1,5 +1,5 @@ -#ifndef COMMON_H -#define COMMON_H +#ifndef HENCE_COMMON_H +#define HENCE_COMMON_H #include <stdio.h> #include <stddef.h> @@ -1,4 +1,9 @@ +#ifndef HENCE_ERROR_H +#define HENCE_ERROR_H + #include <stdio.h> #define emit_error(...) fprintf(stderr, "Error: " __VA_ARGS__) #define emit_info(...) fprintf(stdout, "Info : " __VA_ARGS__) + +#endif @@ -1,5 +1,5 @@ -#ifndef GATE_H -#define GATE_H +#ifndef HENCE_GATE_H +#define HENCE_GATE_H #include <stddef.h> @@ -1,5 +1,5 @@ -#ifndef LOGIC_H -#define LOGIC_H +#ifndef HENCE_LOGIC_H +#define HENCE_LOGIC_H enum BINARY { LOGIC_HIGH, @@ -1,3 +1,8 @@ +#ifndef HENCE_PARSE_H +#define HENCE_PARSE_H + #include <stdio.h> int parse(const char*, FILE*, struct token *); + +#endif |