Subversion Repositories RepoView

Rev

Rev 10 | Rev 14 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
10 nishi 1
/* $Id: rv_repo.h 11 2024-08-21 04:31:55Z nishi $ */
2
 
3
#ifndef __RV_REPO_H__
4
#define __RV_REPO_H__
5
 
11 nishi 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
 
10 nishi 17
#endif