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:
@@ -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
|
||||
|
Reference in New Issue
Block a user