3e8643da0989f97253ca12a69b5062da6218fdda
[reposerve] / server / src / repo.h
1 #ifndef REPO_H_
2 #define REPO_H_
3
4 int repo_init(const char *path);
5 void repo_cleanup(void);
6
7 int repo_num_files(void);
8 const char *repo_file(int idx);
9
10 #endif  /* REPO_H_ */