cryptography/caesar.h

13 lines
303 B
C
Executable File

#ifndef H_INFLATE
#define H_INFLATE
#define SIZE_MAX_FILE 8192
#include "functions.h"
/* Functions */
int cryptCaesar(const char *s, const int key, const int countCharact, char *bufferDst);
int decryptCaesar(const char *s, const int key, const int countCharact, char *bufferDst);
#endif