From 8338b7fdc8568884ec6d7d2bc802ea04556cf7e7 Mon Sep 17 00:00:00 2001 From: PoliEcho Date: Mon, 14 Apr 2025 14:49:44 +0200 Subject: [PATCH] add gamesacky header guard --- src/gameske_funkce.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/gameske_funkce.h b/src/gameske_funkce.h index 70f1df8..a663748 100644 --- a/src/gameske_funkce.h +++ b/src/gameske_funkce.h @@ -1,6 +1,9 @@ #include #include +#ifndef PARADOCS_GAFU_H_ +#define PARADOCS_GAFU_H_ + #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) size_t spawn_menu(uint16_t begin_y, uint16_t begin_x, const char** choices, @@ -11,4 +14,6 @@ void print_in_middle(WINDOW* win, int starty, int startx, int width, std::string spawncmd(); -void async_clock_init(); \ No newline at end of file +void async_clock_init(); + +#endif // PARADOCS_GAFU_H_ \ No newline at end of file