Subversion Repositories RepoView

Rev

Rev 10 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 nishi 1
/* $Id: rv_util.h 15 2024-08-21 15:36:37Z nishi $ */
2
 
3
#ifndef __RV_UTIL_H__
4
#define __RV_UTIL_H__
5
 
6
#ifdef __MINGW32__
7
#define PATH_DELIM ';'
8
#else
9
#define PATH_DELIM ':'
10
#endif
11
 
12
char* rv_strcat(const char* a, const char* b);
13
char* rv_strcat3(const char* a, const char* b, const char* c);
14
char* rv_strdup(const char* str);
15
char* rv_url_decode(const char* str);
16
void rv_error_http(void);
5 nishi 17
char* rv_new_token(const char* username);
10 nishi 18
char* rv_construct_repouser(const char* reponame, const char* username);
15 nishi 19
void rv_add_auth(const char* username, const char* password);
1 nishi 20
 
21
#endif