xref: /titanic_41/usr/src/cmd/ssh/include/tildexpand.h (revision 54925bf60766fbb4f1f2d7c843721406a7b7a3fb)
1 /*	$OpenBSD: tildexpand.h,v 1.4 2001/06/26 17:27:25 markus Exp $	*/
2 
3 #ifndef	_TILDEXPAND_H
4 #define	_TILDEXPAND_H
5 
6 #pragma ident	"%Z%%M%	%I%	%E% SMI"
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 
13 /*
14  * Author: Tatu Ylonen <ylo@cs.hut.fi>
15  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
16  *                    All rights reserved
17  *
18  * As far as I am concerned, the code I have written for this software
19  * can be used freely for any purpose.  Any derived versions of this
20  * software must be clearly marked as such, and if the derived work is
21  * incompatible with the protocol description in the RFC file, it must be
22  * called by a name other than "ssh" or "Secure Shell".
23  */
24 
25 char	*tilde_expand_filename(const char *, uid_t);
26 
27 #ifdef __cplusplus
28 }
29 #endif
30 
31 #endif /* _TILDEXPAND_H */
32