xref: /onnv-gate/usr/src/cmd/ssh/include/xlist.h (revision 0:68f95e015346)
1*0Sstevel@tonic-gate /*
2*0Sstevel@tonic-gate  * Copyright 2003 Sun Microsystems, Inc.  All rights reserved.
3*0Sstevel@tonic-gate  * Use is subject to license terms.
4*0Sstevel@tonic-gate  */
5*0Sstevel@tonic-gate 
6*0Sstevel@tonic-gate #ifndef	_XLIST_H
7*0Sstevel@tonic-gate #define	_XLIST_H
8*0Sstevel@tonic-gate 
9*0Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
10*0Sstevel@tonic-gate 
11*0Sstevel@tonic-gate #ifdef __cplusplus
12*0Sstevel@tonic-gate extern "C" {
13*0Sstevel@tonic-gate #endif
14*0Sstevel@tonic-gate 
15*0Sstevel@tonic-gate 
16*0Sstevel@tonic-gate char ** xsplit(char *list, char sep);
17*0Sstevel@tonic-gate char * xjoin(char **alist, char sep);
18*0Sstevel@tonic-gate void xfree_split_list(char **list);
19*0Sstevel@tonic-gate 
20*0Sstevel@tonic-gate #ifdef __cplusplus
21*0Sstevel@tonic-gate }
22*0Sstevel@tonic-gate #endif
23*0Sstevel@tonic-gate 
24*0Sstevel@tonic-gate #endif /* _XLIST_H */
25