Subversion Repositories RepoView

Rev

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

Rev Author Line No. Line
1 nishi 1
/* $Id: rv_util.h 5 2024-08-20 22:43:56Z 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);
1 nishi 18
 
19
#endif