From 1f7e8e937d0e71e7eb3b5deab38b34d0a0159d88 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 17 Sep 2026 21:50:34 +0200 Subject: Added include guards --- src/core/constants.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/core/constants.h') diff --git a/src/core/constants.h b/src/core/constants.h index 076a483..7e51f67 100644 --- a/src/core/constants.h +++ b/src/core/constants.h @@ -1,3 +1,6 @@ +#ifndef CORE_CONSTANTS_H +#define CORE_CONSTANTS_H + #define ZERO_ORIENTED_CUBE ((oriented_cube_t) {0}) #define SOLVED_ORIENTED_CUBE \ ((oriented_cube_t) { .cube = SOLVED_CUBE, .orientation = 0 }) @@ -913,3 +916,5 @@ STATIC uint8_t basic_to_rotation[] = { [MOVE_B2] = MOVE_z2, [MOVE_B3] = MOVE_z, }; + +#endif /* CORE_CONSTANTS_H */ -- cgit v1.3