xref: /titanic_44/usr/src/cmd/ssh/include/tildexpand.h (revision b9aa66a73c9016cf5c71fe80efe90ce9f2ca5c73)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * Author: Tatu Ylonen <ylo@cs.hut.fi>
37c478bd9Sstevel@tonic-gate  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
47c478bd9Sstevel@tonic-gate  *                    All rights reserved
57c478bd9Sstevel@tonic-gate  *
67c478bd9Sstevel@tonic-gate  * As far as I am concerned, the code I have written for this software
77c478bd9Sstevel@tonic-gate  * can be used freely for any purpose.  Any derived versions of this
87c478bd9Sstevel@tonic-gate  * software must be clearly marked as such, and if the derived work is
97c478bd9Sstevel@tonic-gate  * incompatible with the protocol description in the RFC file, it must be
107c478bd9Sstevel@tonic-gate  * called by a name other than "ssh" or "Secure Shell".
117c478bd9Sstevel@tonic-gate  */
127c478bd9Sstevel@tonic-gate 
13*b9aa66a7SJan Pechanec /*	$OpenBSD: tildexpand.h,v 1.4 2001/06/26 17:27:25 markus Exp $	*/
14*b9aa66a7SJan Pechanec 
15*b9aa66a7SJan Pechanec #ifndef	_TILDEXPAND_H
16*b9aa66a7SJan Pechanec #define	_TILDEXPAND_H
17*b9aa66a7SJan Pechanec 
18*b9aa66a7SJan Pechanec #ifdef __cplusplus
19*b9aa66a7SJan Pechanec extern "C" {
20*b9aa66a7SJan Pechanec #endif
21*b9aa66a7SJan Pechanec 
227c478bd9Sstevel@tonic-gate char	*tilde_expand_filename(const char *, uid_t);
237c478bd9Sstevel@tonic-gate 
247c478bd9Sstevel@tonic-gate #ifdef __cplusplus
257c478bd9Sstevel@tonic-gate }
267c478bd9Sstevel@tonic-gate #endif
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate #endif /* _TILDEXPAND_H */
29