prefix strvis functions with rk_

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19308 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-12-11 18:54:03 +00:00
parent 7d15657340
commit a548a4cd91

View File

@@ -210,7 +210,7 @@ do { \
*/ */
#ifndef HAVE_SVIS #ifndef HAVE_SVIS
char * ROKEN_LIB_FUNCTION char * ROKEN_LIB_FUNCTION
svis(char *dst, int c, int flag, int nextc, const char *extra) rk_svis(char *dst, int c, int flag, int nextc, const char *extra)
{ {
_DIAGASSERT(dst != NULL); _DIAGASSERT(dst != NULL);
_DIAGASSERT(extra != NULL); _DIAGASSERT(extra != NULL);
@@ -239,7 +239,7 @@ svis(char *dst, int c, int flag, int nextc, const char *extra)
*/ */
#ifndef HAVE_STRSVIS #ifndef HAVE_STRSVIS
int ROKEN_LIB_FUNCTION int ROKEN_LIB_FUNCTION
strsvis(char *dst, const char *src, int flag, const char *extra) rk_strsvis(char *dst, const char *src, int flag, const char *extra)
{ {
char c; char c;
char *start; char *start;
@@ -258,7 +258,7 @@ strsvis(char *dst, const char *src, int flag, const char *extra)
#ifndef HAVE_STRVISX #ifndef HAVE_STRVISX
int ROKEN_LIB_FUNCTION int ROKEN_LIB_FUNCTION
strsvisx(char *dst, const char *src, size_t len, int flag, const char *extra) rk_strsvisx(char *dst, const char *src, size_t len, int flag, const char *extra)
{ {
char c; char c;
char *start; char *start;
@@ -282,7 +282,7 @@ strsvisx(char *dst, const char *src, size_t len, int flag, const char *extra)
*/ */
#ifndef HAVE_VIS #ifndef HAVE_VIS
char * ROKEN_LIB_FUNCTION char * ROKEN_LIB_FUNCTION
vis(char *dst, int c, int flag, int nextc) rk_vis(char *dst, int c, int flag, int nextc)
{ {
char extra[MAXEXTRAS]; char extra[MAXEXTRAS];
@@ -308,7 +308,7 @@ vis(char *dst, int c, int flag, int nextc)
*/ */
#ifndef HAVE_STRVIS #ifndef HAVE_STRVIS
int ROKEN_LIB_FUNCTION int ROKEN_LIB_FUNCTION
strvis(char *dst, const char *src, int flag) rk_strvis(char *dst, const char *src, int flag)
{ {
char extra[MAXEXTRAS]; char extra[MAXEXTRAS];
@@ -320,7 +320,7 @@ strvis(char *dst, const char *src, int flag)
#ifndef HAVE_STRVISX #ifndef HAVE_STRVISX
int ROKEN_LIB_FUNCTION int ROKEN_LIB_FUNCTION
strvisx(char *dst, const char *src, size_t len, int flag) rk_strvisx(char *dst, const char *src, size_t len, int flag)
{ {
char extra[MAXEXTRAS]; char extra[MAXEXTRAS];