cryptography/functions.h
2021-10-21 19:51:45 +02:00

17 lines
371 B
C
Executable File

#ifndef H_FUNCTIONS
#define H_FUNCTIONS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* Functions */
void usage();
int fileExist(const char *path);
int copyFile(const char *path, char *buffer);
int addDataToFile(const char *data, const char *path);
int fileNumberCaract(const char *s);
void err(const int error, const char *path);
#endif