xref: /titanic_53/usr/src/cmd/zfs/zfs_iter.h (revision e9dbad6f263d5570ed7ff5443ec5b958af8c24d7)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
599653d4eSeschrock  * Common Development and Distribution License (the "License").
699653d4eSeschrock  * You may not use this file except in compliance with the License.
7fa9e4066Sahrens  *
8fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens  * See the License for the specific language governing permissions
11fa9e4066Sahrens  * and limitations under the License.
12fa9e4066Sahrens  *
13fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens  *
19fa9e4066Sahrens  * CDDL HEADER END
20fa9e4066Sahrens  */
21fa9e4066Sahrens /*
2299653d4eSeschrock  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23fa9e4066Sahrens  * Use is subject to license terms.
24fa9e4066Sahrens  */
25fa9e4066Sahrens 
26fa9e4066Sahrens #ifndef	ZFS_ITER_H
27fa9e4066Sahrens #define	ZFS_ITER_H
28fa9e4066Sahrens 
29fa9e4066Sahrens #pragma ident	"%Z%%M%	%I%	%E% SMI"
30fa9e4066Sahrens 
31fa9e4066Sahrens #ifdef	__cplusplus
32fa9e4066Sahrens extern "C" {
33fa9e4066Sahrens #endif
34fa9e4066Sahrens 
35b6825278Ssjelinek typedef struct zfs_sort_column {
36b6825278Ssjelinek 	struct zfs_sort_column	*sc_next;
37b6825278Ssjelinek 	struct zfs_sort_column	*sc_last;
38b6825278Ssjelinek 	zfs_prop_t		sc_prop;
39*e9dbad6fSeschrock 	char			*sc_user_prop;
40b6825278Ssjelinek 	boolean_t		sc_reverse;
41b6825278Ssjelinek } zfs_sort_column_t;
42b6825278Ssjelinek 
43b6825278Ssjelinek int zfs_for_each(int, char **, boolean_t, zfs_type_t, zfs_sort_column_t *,
44*e9dbad6fSeschrock     zfs_proplist_t **, zfs_iter_f, void *);
45*e9dbad6fSeschrock int zfs_add_sort_column(zfs_sort_column_t **, const char *, boolean_t);
46b6825278Ssjelinek void zfs_free_sort_columns(zfs_sort_column_t *);
47fa9e4066Sahrens 
48fa9e4066Sahrens #ifdef	__cplusplus
49fa9e4066Sahrens }
50fa9e4066Sahrens #endif
51fa9e4066Sahrens 
52fa9e4066Sahrens #endif	/* ZFS_ITER_H */
53