From b19846eb652c1fbaa1f83af62c46462911950bf5 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Thu, 5 May 2022 19:03:53 +0200 Subject: [PATCH] added outputFlags typedef --- include/flags.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/include/flags.h b/include/flags.h index 48db78f..c2a0c86 100644 --- a/include/flags.h +++ b/include/flags.h @@ -23,11 +23,17 @@ #define DEPRECATED __attribute__((deprecated)) -struct inputFlags +typedef struct { int skipCheck; int noOutput; -}; +} inputFlags; + +typedef struct +{ + char *outputText; + char *usedKey; +} *outputFlags; //VARIABLES static int keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS <