created decryption function

This commit is contained in:
Václav Šmejkal 2022-03-07 17:33:51 +01:00
parent a0883f6d7f
commit 30c18b73ab
2 changed files with 14 additions and 0 deletions

View File

@ -1,4 +1,6 @@
#ifndef WHY2_DECRYPTER_H
#define WHY2_DECRYPTER_H
char *decryptText(char *text, char *key); //TEXT from WILL BE DECRYPTED WITH KEY AND RETURNED
#endif

View File

@ -0,0 +1,12 @@
#include "../include/decrypter.h"
#include <stdio.h>
#include <stdlib.h>
char *decryptText(char *text, char *key)
{
printf("fuk of\n");
exit(0);
return NULL;
}