14 lines
318 B
C
Executable File
14 lines
318 B
C
Executable File
#ifndef H_INFLATE
|
|
#define H_INFLATE
|
|
|
|
#define SIZE_MAX_FILE 8192
|
|
|
|
#include "functions.h"
|
|
|
|
/* Functions */
|
|
void inflate();
|
|
int cryptCesar(const char *s, const int key, const int countCharact, char *bufferDst);
|
|
int decryptCesar(const char *s, const int key, const int countCharact, char *bufferDst);
|
|
|
|
#endif
|