created noOutput flag

This commit is contained in:
Václav Šmejkal 2022-05-04 18:42:30 +02:00
parent 38eeb4303e
commit b6819fbebd
2 changed files with 15 additions and 0 deletions

View File

@ -13,7 +13,9 @@
//VARIABLES
static int keyLength = 50;
static int skipCheck = 0;
static int noOutput = 0;
//FUNCTIONS
int getSkipCheck();
@ -22,4 +24,7 @@ void setSkipCheck(int skipCheckNew);
int getKeyLength();
void setKeyLength(int keyLengthNew);
int getNoOutput();
void setNoOutput(int noOutputNew);
#endif

View File

@ -18,4 +18,14 @@ int getKeyLength()
void setKeyLength(int keyLengthNew)
{
keyLength = keyLengthNew;
}
int getNoOutput()
{
return noOutput;
}
void setNoOutput(int noOutputNew)
{
noOutput = noOutputNew;
}