summaryrefslogtreecommitdiff
path: root/usr/src/cmd/ssh/include/xlist.h
blob: a6675c246b1cb017eaa0501cc7764baea48c8eae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright 2003 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

#ifndef	_XLIST_H
#define	_XLIST_H

#pragma ident	"%Z%%M%	%I%	%E% SMI"

#ifdef __cplusplus
extern "C" {
#endif


char ** xsplit(char *list, char sep);
char * xjoin(char **alist, char sep);
void xfree_split_list(char **list);

#ifdef __cplusplus
}
#endif

#endif /* _XLIST_H */