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 35*b6825278Ssjelinek typedef struct zfs_sort_column { 36*b6825278Ssjelinek struct zfs_sort_column *sc_next; 37*b6825278Ssjelinek struct zfs_sort_column *sc_last; 38*b6825278Ssjelinek zfs_prop_t sc_prop; 39*b6825278Ssjelinek boolean_t sc_reverse; 40*b6825278Ssjelinek } zfs_sort_column_t; 41*b6825278Ssjelinek 42*b6825278Ssjelinek int zfs_for_each(int, char **, boolean_t, zfs_type_t, zfs_sort_column_t *, 43*b6825278Ssjelinek zfs_iter_f, void *); 44*b6825278Ssjelinek void zfs_add_sort_column(zfs_sort_column_t **, zfs_prop_t, boolean_t); 45*b6825278Ssjelinek void zfs_free_sort_columns(zfs_sort_column_t *); 46fa9e4066Sahrens 47fa9e4066Sahrens #ifdef __cplusplus 48fa9e4066Sahrens } 49fa9e4066Sahrens #endif 50fa9e4066Sahrens 51fa9e4066Sahrens #endif /* ZFS_ITER_H */ 52