added outputFlags typedef

This commit is contained in:
Václav Šmejkal 2022-05-05 19:03:53 +02:00
parent c8b4780f5c
commit b19846eb65

View File

@ -23,11 +23,17 @@
#define DEPRECATED __attribute__((deprecated)) #define DEPRECATED __attribute__((deprecated))
struct inputFlags typedef struct
{ {
int skipCheck; int skipCheck;
int noOutput; int noOutput;
}; } inputFlags;
typedef struct
{
char *outputText;
char *usedKey;
} *outputFlags;
//VARIABLES //VARIABLES
static int keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS < static int keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS <