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