From 2156aff370d8a223ff41882467d55ceb41d4f877 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Wed, 4 May 2022 19:21:31 +0200 Subject: [PATCH] separated functions into getters and setters --- include/flags.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/flags.h b/include/flags.h index 80dc3a3..f26b7ae 100644 --- a/include/flags.h +++ b/include/flags.h @@ -17,14 +17,14 @@ static int keyLength = 50; static int skipCheck = 0; static int noOutput = 0; -//FUNCTIONS +//GETTERS int getSkipCheck(); -void setSkipCheck(int skipCheckNew); - int getKeyLength(); -void setKeyLength(int keyLengthNew); - int getNoOutput(); + +//SETTERS +void setSkipCheck(int skipCheckNew); +void setKeyLength(int keyLengthNew); void setNoOutput(int noOutputNew); #endif