aboutsummaryrefslogtreecommitdiff
path: root/src/io
diff options
context:
space:
mode:
authorJ08nY2018-03-03 01:24:03 +0100
committerJ08nY2018-03-03 01:24:03 +0100
commitd53630043dedeef63a1ea8063c537a939d43afda (patch)
treea79f723623da515b6611cbe8d8896ff829f289c7 /src/io
parent1f0f281a8a0ee8d4114a7f1df6c762f20e935746 (diff)
downloadecgen-d53630043dedeef63a1ea8063c537a939d43afda.tar.gz
ecgen-d53630043dedeef63a1ea8063c537a939d43afda.tar.zst
ecgen-d53630043dedeef63a1ea8063c537a939d43afda.zip
Add direcory names to include guards.
Diffstat (limited to 'src/io')
-rw-r--r--src/io/cli.h6
-rw-r--r--src/io/input.h6
-rw-r--r--src/io/output.h6
3 files changed, 9 insertions, 9 deletions
diff --git a/src/io/cli.h b/src/io/cli.h
index 444163d..f480f7f 100644
--- a/src/io/cli.h
+++ b/src/io/cli.h
@@ -5,8 +5,8 @@
/**
* @file cli.h
*/
-#ifndef ECGEN_CLI_H
-#define ECGEN_CLI_H
+#ifndef ECGEN_IO_CLI_H
+#define ECGEN_IO_CLI_H
#include <argp.h>
#include <stdbool.h>
@@ -34,4 +34,4 @@ error_t cli_parse(int key, char *arg, struct argp_state *state);
*/
char *cli_filter(int key, const char *text, void *input);
-#endif // ECGEN_CLI_H
+#endif // ECGEN_IO_CLI_H
diff --git a/src/io/input.h b/src/io/input.h
index ed184c4..a56347a 100644
--- a/src/io/input.h
+++ b/src/io/input.h
@@ -5,8 +5,8 @@
/**
* @file input.h
*/
-#ifndef ECGEN_INPUT_H
-#define ECGEN_INPUT_H
+#ifndef ECGEN_IO_INPUT_H
+#define ECGEN_IO_INPUT_H
#include "misc/types.h"
#include "util/random.h"
@@ -57,4 +57,4 @@ bool input_init();
*/
void input_quit(void);
-#endif // ECGEN_INPUT_H
+#endif // ECGEN_IO_INPUT_H
diff --git a/src/io/output.h b/src/io/output.h
index 6c048d9..1bf9aee 100644
--- a/src/io/output.h
+++ b/src/io/output.h
@@ -5,8 +5,8 @@
/**
* @file output.h
*/
-#ifndef ECGEN_OUTPUT_H
-#define ECGEN_OUTPUT_H
+#ifndef ECGEN_IO_OUTPUT_H
+#define ECGEN_IO_OUTPUT_H
#include <pari/pari.h>
#include <stdbool.h>
@@ -202,4 +202,4 @@ bool output_init();
*/
void output_quit(void);
-#endif // ECGEN_OUTPUT_H
+#endif // ECGEN_IO_OUTPUT_H