17 lines
371 B
C
Executable File
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
|