created noOutput flag
This commit is contained in:
parent
38eeb4303e
commit
b6819fbebd
@ -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
|
||||
|
@ -18,4 +18,14 @@ int getKeyLength()
|
||||
void setKeyLength(int keyLengthNew)
|
||||
{
|
||||
keyLength = keyLengthNew;
|
||||
}
|
||||
|
||||
int getNoOutput()
|
||||
{
|
||||
return noOutput;
|
||||
}
|
||||
|
||||
void setNoOutput(int noOutputNew)
|
||||
{
|
||||
noOutput = noOutputNew;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user