diff --git a/include/decrypter.h b/include/decrypter.h index 81d1a0b..56425de 100644 --- a/include/decrypter.h +++ b/include/decrypter.h @@ -3,6 +3,6 @@ #include -outputFlags decryptText(char *text, char *keyNew, inputFlags flags); //TEXT from WILL BE DECRYPTED WITH KEY AND RETURNED +outputFlags decryptText(char *text, char *keyNew); //TEXT from WILL BE DECRYPTED WITH KEY AND RETURNED #endif \ No newline at end of file diff --git a/include/encrypter.h b/include/encrypter.h index b0e4640..b25b9e4 100644 --- a/include/encrypter.h +++ b/include/encrypter.h @@ -3,6 +3,6 @@ #include -outputFlags encryptText(char *text, char *keyNew, inputFlags flags); //TEXT from WILL BE ENCRYPTED WITH RANDOM PASSWORD [KEY] (WHICH WILL BE PRINTED OUT) AND RETURNED +outputFlags encryptText(char *text, char *keyNew); //TEXT from WILL BE ENCRYPTED WITH RANDOM PASSWORD [KEY] (WHICH WILL BE PRINTED OUT) AND RETURNED #endif \ No newline at end of file diff --git a/src/lib/decrypter.c b/src/lib/decrypter.c index 8e7ae22..cdc8f93 100644 --- a/src/lib/decrypter.c +++ b/src/lib/decrypter.c @@ -8,7 +8,7 @@ #include #include -outputFlags decryptText(char *text, char *keyNew, inputFlags flags) +outputFlags decryptText(char *text, char *keyNew) { //CHECK VARIABLE int checkExitCode; diff --git a/src/lib/encrypter.c b/src/lib/encrypter.c index 3a14eb7..f5e34ae 100644 --- a/src/lib/encrypter.c +++ b/src/lib/encrypter.c @@ -9,7 +9,7 @@ #include #include -outputFlags encryptText(char *text, char *keyNew, inputFlags flags) +outputFlags encryptText(char *text, char *keyNew) { //CHECK VARIABLE int checkExitCode;