moved encryptionOperation_type_cb into flags.h

This commit is contained in:
Václav Šmejkal 2022-10-17 16:41:04 +02:00
parent e3952796a6
commit 0edab92261
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19
2 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,9 @@ const enum EXIT_CODES //exit codes you fucking idiot
#define DEPRECATED __attribute__((deprecated)) //SAME COMMENT AS VERSIONS_NAME'S
#define UNUSED __attribute__((unused)) //SAME COMMENT AS DEPRECATED'S
//TYPES
typedef char boolean;
typedef int (*encryptionOperation_type_cb)(int, int);
typedef struct
{
boolean noCheck; //BOOLEAN FOR SKIPPING VERSION CHECK

View File

@ -11,7 +11,6 @@ int encryptionOperation(int text, int encryptedText);
char encryptionSeparator = '.'; //NOPE > DO NOT TOUCH THIS, USE setEncryptionSeparator instead <
unsigned long keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS, USE setKeyLength instead <
inputFlags flags = DEFAULT_FLAGS;
typedef int (*encryptionOperation_type_cb)(int, int);
encryptionOperation_type_cb encryptionOperation_cb = encryptionOperation;
//GETTERS