From d5d0a1e63b44a01f8077e7725a3b9554ba6e826a Mon Sep 17 00:00:00 2001 From: elmo128 <60213508+elmo128@users.noreply.github.com> Date: Tue, 12 Sep 2023 05:30:55 +0200 Subject: [PATCH] add header guards --- src/wManager.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/wManager.h b/src/wManager.h index 870b435..7c8dc64 100644 --- a/src/wManager.h +++ b/src/wManager.h @@ -1,3 +1,8 @@ +#ifndef _WMANAGER_H +#define _WMANAGER_H + void init_WifiManager(); void wifiManagerProcess(); -void reset_configurations(); \ No newline at end of file +void reset_configurations(); + +#endif // _WMANAGER_H