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

View File

@ -19,3 +19,13 @@ void setKeyLength(int keyLengthNew)
{ {
keyLength = keyLengthNew; keyLength = keyLengthNew;
} }
int getNoOutput()
{
return noOutput;
}
void setNoOutput(int noOutputNew)
{
noOutput = noOutputNew;
}