From 713ab75c772435e6c7189567d57ace06c3f55328 Mon Sep 17 00:00:00 2001 From: Eric Lenz <elenz@iat.tu-darmstadt.de> Date: Mon, 16 Oct 2023 14:47:03 +0200 Subject: [PATCH] name include guard in uppercase letters --- src/controller.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/controller.h b/src/controller.h index f85f24f..75feb96 100644 --- a/src/controller.h +++ b/src/controller.h @@ -1,4 +1,4 @@ -#ifndef controller_H -#define controller_H +#ifndef CONTROLLER_H +#define CONTROLLER_H int controller(int w, int y, int maxControl); -#endif // controller_H +#endif // CONTROLLER_H -- GitLab