Subversion Repositories RepoView

Rev

Rev 5 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

/* $Id: rv_util.h 1 2024-08-20 19:18:25Z nishi $ */

#ifndef __RV_UTIL_H__
#define __RV_UTIL_H__

#ifdef __MINGW32__
#define PATH_DELIM ';'
#else
#define PATH_DELIM ':'
#endif

char* rv_strcat(const char* a, const char* b);
char* rv_strcat3(const char* a, const char* b, const char* c);
char* rv_strdup(const char* str);
char* rv_url_decode(const char* str);
void rv_error_http(void);

#endif