add prototypes for str, unvis functions

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@11234 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2002-08-26 13:30:42 +00:00
parent b61d95fffc
commit 16380081d3

View File

@@ -1,6 +1,6 @@
/* -*- C -*- */
/*
* Copyright (c) 1995 - 2001 Kungliga Tekniska H<>gskolan
* Copyright (c) 1995 - 2002 Kungliga Tekniska H<>gskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
@@ -644,4 +644,39 @@ struct tm *
localtime_r(const time_t *timer, struct tm *result);
#endif
#if !defined(HAVE_STRSVIS) || defined(NEED_STRSVIS_PROTO)
int
strsvis(char *dst, const char *src, int flag, const char *extra);
#endif
#if !defined(HAVE_STRUNVIS) || defined(NEED_STRUNVIS_PROTO)
int
strunvis(char *dst, const char *src);
#endif
#if !defined(HAVE_STRVIS) || defined(NEED_STRVIS_PROTO)
int
strvis(char *dst, const char *src, int flag);
#endif
#if !defined(HAVE_STRVISX) || defined(NEED_STRVISX_PROTO)
int
strvisx(char *dst, const char *src, size_t len, int flag);
#endif
#if !defined(HAVE_SVIS) || defined(NEED_SVIS_PROTO)
char *
svis(char *dst, int c, int flag, int nextc, const char *extra);
#endif
#if !defined(HAVE_UNVIS) || defined(NEED_UNVIS_PROTO)
int
unvis(char *cp, int c, int *astate, int flag);
#endif
#if !defined(HAVE_VIS) || defined(NEED_VIS_PROTO)
char *
vis(char *dst, int c, int flag, int nextc)
#endif
ROKEN_CPP_END