From 7211f9c57204dc3b27327fc92352d99ad080a8db Mon Sep 17 00:00:00 2001 From: Galin Simeonov Date: Sat, 25 Sep 2021 23:15:21 +0300 Subject: made it create a directory with files containing the output of the program --- system_part.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 system_part.h (limited to 'system_part.h') diff --git a/system_part.h b/system_part.h new file mode 100644 index 0000000..ac06166 --- /dev/null +++ b/system_part.h @@ -0,0 +1,32 @@ +#ifndef VOLGIT_SYSTEM_PART_H +#define VOLGIT_SYSTEM_PART_H VOLGIT_SYSTEM_PART_H +#include +#include +#include +#include +#include +#include + +extern const char *default_header; +extern const char *default_footer; + +extern struct Volgit_Options +{ + const char *input_path; + const char *output_path; + const char *header; + const char *footer; + int output_dir_fd; +}options; + +void die(const char *format, ...); + +void parse_options(int argc,char **argv); +char* read_file(const char *filename); +int create_branch_dir(const char *branch_name); +FILE* create_file(int branch_dir,const char *filename); +int create_files_dir(int branch_dir); +int create_diff_dir(int branch_dir); + + +#endif -- cgit v1.2.3