Subversion Repositories RepoView

Rev

Rev 11 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 11 Rev 14
Line 1... Line 1...
1
/* $Id: rv_repo.h 11 2024-08-21 04:31:55Z nishi $ */
1
/* $Id: rv_repo.h 14 2024-08-21 14:24:05Z nishi $ */
2
 
2
 
3
#ifndef __RV_REPO_H__
3
#ifndef __RV_REPO_H__
4
#define __RV_REPO_H__
4
#define __RV_REPO_H__
5
 
5
 
6
#include <stdbool.h>
6
#include <stdbool.h>
Line 11... Line 11...
11
void rv_create_repo(const char* repouser);
11
void rv_create_repo(const char* repouser);
12
char* rv_get_readme(const char* repouser);
12
char* rv_get_readme(const char* repouser);
13
bool rv_get_list(const char* repouser, const char* path, void (*handler)(const char* pathname), int* isdir);
13
bool rv_get_list(const char* repouser, const char* path, void (*handler)(const char* pathname), int* isdir);
14
char* rv_read_file(const char* repouser, char* path);
14
char* rv_read_file(const char* repouser, char* path);
15
long long rv_get_filesize(const char* repouser, const char* path);
15
long long rv_get_filesize(const char* repouser, const char* path);
-
 
16
void rv_remove_repo(const char* repouser);
16
 
17
 
17
#endif
18
#endif