1 /* 2 * Copyright 2003 Sun Microsystems, Inc. All rights reserved. 3 * Use is subject to license terms. 4 */ 5 6 #ifndef _XLIST_H 7 #define _XLIST_H 8 9 #pragma ident "%Z%%M% %I% %E% SMI" 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 16 char ** xsplit(char *list, char sep); 17 char * xjoin(char **alist, char sep); 18 void xfree_split_list(char **list); 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif /* _XLIST_H */ 25