summaryrefslogtreecommitdiffstats
path: root/system_part.h
blob: 5049312a5e26796e3e6a5ac6ee2df34edf7546f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef VOLGIT_SYSTEM_PART_H
#define VOLGIT_SYSTEM_PART_H VOLGIT_SYSTEM_PART_H
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdarg.h>

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_dir(int base_dir,const char *dir_name);


#endif