Subversion Repositories RepoView

Rev

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

Rev 1 Rev 5
Line 1... Line 1...
1
/* $Id: rv_util.h 1 2024-08-20 19:18:25Z nishi $ */
1
/* $Id: rv_util.h 5 2024-08-20 22:43:56Z nishi $ */
2
 
2
 
3
#ifndef __RV_UTIL_H__
3
#ifndef __RV_UTIL_H__
4
#define __RV_UTIL_H__
4
#define __RV_UTIL_H__
5
 
5
 
6
#ifdef __MINGW32__
6
#ifdef __MINGW32__
Line 12... Line 12...
12
char* rv_strcat(const char* a, const char* b);
12
char* rv_strcat(const char* a, const char* b);
13
char* rv_strcat3(const char* a, const char* b, const char* c);
13
char* rv_strcat3(const char* a, const char* b, const char* c);
14
char* rv_strdup(const char* str);
14
char* rv_strdup(const char* str);
15
char* rv_url_decode(const char* str);
15
char* rv_url_decode(const char* str);
16
void rv_error_http(void);
16
void rv_error_http(void);
-
 
17
char* rv_new_token(const char* username);
17
 
18
 
18
#endif
19
#endif