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