created memory_identifier flag

This commit is contained in:
Václav Šmejkal 2023-02-02 16:32:13 +01:00
parent 70335e67ad
commit 2c7130304f
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -18,10 +18,13 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <why2/flags.h> #include <why2/flags.h>
#include <stdio.h>
#include <why2/memory.h> #include <why2/memory.h>
//CONSTS (this is just local) //CONSTS (this is just local)
#define DEFAULT_FLAGS (why2_input_flags) { 0, 0, 0 } #define DEFAULT_FLAGS (why2_input_flags) { 0, 0, 0 }
#define DEFAULT_MEMORY_IDENTIFIER NULL
int encryptionOperation(int text, int encryptedText); int encryptionOperation(int text, int encryptedText);
@ -31,6 +34,7 @@ unsigned long keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS, USE why2_
why2_input_flags flagsAllah = DEFAULT_FLAGS; //IT IS CALLED flagsAllah CUZ flags CAUSED SOME FUCKING MEMORY PROBLEMS why2_input_flags flagsAllah = DEFAULT_FLAGS; //IT IS CALLED flagsAllah CUZ flags CAUSED SOME FUCKING MEMORY PROBLEMS
why2_encryption_operation_cb encryptionOperation_cb = encryptionOperation; why2_encryption_operation_cb encryptionOperation_cb = encryptionOperation;
why2_bool flagsChanged = 0; //CHANGES TO 1 WHEN U USE why2_set_flags why2_bool flagsChanged = 0; //CHANGES TO 1 WHEN U USE why2_set_flags
char *memory_identifier = DEFAULT_MEMORY_IDENTIFIER;
//GETTERS //GETTERS
char why2_get_encryption_separator(void) char why2_get_encryption_separator(void)