diff options
-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 |