Subversion Repositories RepoView

Rev

Rev 14 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 14 Rev 15
Line 1... Line 1...
1
/* $Id: rv_repo.h 14 2024-08-21 14:24:05Z nishi $ */
1
/* $Id: rv_repo.h 15 2024-08-21 15:36:37Z 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 12... Line 12...
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
void rv_remove_repo(const char* repouser);
-
 
17
void rv_set_readme(const char* repouser, const char* readme);
17
 
18
 
18
#endif
19
#endif