From e3ae3fe4119a6523f1f4e3ee67a23a0ba2a4353b Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Fri, 6 May 2022 18:14:45 +0200 Subject: [PATCH] added missing comments --- include/flags.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/flags.h b/include/flags.h index 744af00..340f77b 100644 --- a/include/flags.h +++ b/include/flags.h @@ -25,14 +25,14 @@ typedef struct input { - int skipCheck; - int noOutput; + int skipCheck; //BOOLEAN FOR SKIPPING VERSION CHECK + int noOutput; //BOOLEAN FOR NOT PRINTING OUTPUT WHEN ENCRYPTING/DECRYPTING } inputFlags; typedef struct output { - char *outputText; - char *usedKey; + char *outputText; //VARIABLE FOR ENCRYPTED/DECRYPTED TEXT + char *usedKey; //VARIABLE FOR USED/GENERATED KEY } outputFlags; //VARIABLES