Subversion Repositories RepoView

Rev

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

Rev 10 Rev 11
Line 1... Line 1...
1
/* $Id: rv_repo.h 10 2024-08-21 02:13:48Z nishi $ */
1
/* $Id: rv_repo.h 11 2024-08-21 04:31:55Z 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>
-
 
7
 
-
 
8
char* rv_construct_repouser(const char* reponame, const char* username);
-
 
9
bool rv_repo_exists(const char* repouser);
-
 
10
void rv_repo_list(const char* username, void (*handler)(const char* name, const char* rev));
-
 
11
void rv_create_repo(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);
-
 
14
char* rv_read_file(const char* repouser, char* path);
-
 
15
long long rv_get_filesize(const char* repouser, const char* path);
-
 
16
 
6
#endif
17
#endif