diff --git a/include/flags.h b/include/flags.h index 1ee5b93..869f358 100644 --- a/include/flags.h +++ b/include/flags.h @@ -74,9 +74,9 @@ typedef struct //GETTERS char getEncryptionSeparator(); unsigned long getKeyLength(); -inputFlags defaultFlags(); //THIS GENERATES inputFlags WITH DEFAULT VALUES +inputFlags getDefaultFlags(); //THIS GENERATES inputFlags WITH DEFAULT VALUES inputFlags getFlags(); //RETURNS USED FLAGS -outputFlags noOutput(boolean exitCode); //SAME AS defaultFlags() BUT FOR outputFlags +outputFlags noOutput(boolean exitCode); //SAME AS getDefaultFlags() BUT FOR outputFlags encryptionOperation_type_cb getEncryptionOperation(); //RETURNS FUNCTION WHICH IS USED FOR ENCRYPTION & DECRYPTION //SETTERS diff --git a/src/core/lib/flags.c b/src/core/lib/flags.c index 5a4ba93..a0d03cc 100644 --- a/src/core/lib/flags.c +++ b/src/core/lib/flags.c @@ -42,7 +42,7 @@ unsigned long getKeyLength() return keyLength; } -inputFlags defaultFlags() +inputFlags getDefaultFlags() { return DEFAULT_FLAGS; }