renamed noFlags to defaultFlags
This commit is contained in:
parent
92dd06d8b0
commit
71865826fa
@ -48,8 +48,8 @@ typedef struct
|
|||||||
//GETTERS
|
//GETTERS
|
||||||
char getEncryptionSeparator();
|
char getEncryptionSeparator();
|
||||||
unsigned long getKeyLength();
|
unsigned long getKeyLength();
|
||||||
inputFlags noFlags(); //THIS GENERATES inputFlags WITH DEFAULT VALUES
|
inputFlags defaultFlags(); //THIS GENERATES inputFlags WITH DEFAULT VALUES
|
||||||
outputFlags noOutput(unsigned char exitCode); //SAME AS noFlags() BUT FOR outputFlags
|
outputFlags noOutput(unsigned char exitCode); //SAME AS defaultFlags() BUT FOR outputFlags
|
||||||
|
|
||||||
//SETTERS
|
//SETTERS
|
||||||
void setEncryptionSeparator(char encryptionSeparatorNew);
|
void setEncryptionSeparator(char encryptionSeparatorNew);
|
||||||
|
@ -17,7 +17,7 @@ unsigned long getKeyLength()
|
|||||||
return keyLength;
|
return keyLength;
|
||||||
}
|
}
|
||||||
|
|
||||||
inputFlags noFlags()
|
inputFlags defaultFlags()
|
||||||
{
|
{
|
||||||
return (inputFlags) {0, 0, 1};
|
return (inputFlags) {0, 0, 1};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user