diff options
| author | J08nY | 2018-03-03 01:24:03 +0100 |
|---|---|---|
| committer | J08nY | 2018-03-03 01:24:03 +0100 |
| commit | d53630043dedeef63a1ea8063c537a939d43afda (patch) | |
| tree | a79f723623da515b6611cbe8d8896ff829f289c7 /src/io | |
| parent | 1f0f281a8a0ee8d4114a7f1df6c762f20e935746 (diff) | |
| download | ecgen-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.h | 6 | ||||
| -rw-r--r-- | src/io/input.h | 6 | ||||
| -rw-r--r-- | src/io/output.h | 6 |
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 |
