mount_chfs.h revision 1.1
11.1Sahoka/* 21.1Sahoka * Copyright (c) 2008 The NetBSD Foundation. All Rights Reserved. 31.1Sahoka * 41.1Sahoka * Redistribution and use in source and binary forms, with or without 51.1Sahoka * modification, are permitted provided that the following conditions 61.1Sahoka * are met: 71.1Sahoka * 1. Redistributions of source code must retain the above copyright 81.1Sahoka * notice, this list of conditions and the following disclaimer. 91.1Sahoka * 2. Redistributions in binary form must reproduce the above copyright 101.1Sahoka * notice, this list of conditions and the following disclaimer in the 111.1Sahoka * documentation and/or other materials provided with the distribution. 121.1Sahoka * 131.1Sahoka * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 141.1Sahoka * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 151.1Sahoka * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 161.1Sahoka * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 171.1Sahoka * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 181.1Sahoka * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 191.1Sahoka * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 201.1Sahoka * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 211.1Sahoka * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 221.1Sahoka * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 231.1Sahoka * SUCH DAMAGE. 241.1Sahoka */ 251.1Sahoka 261.1Sahoka#ifndef _SBIN_MOUNT_CHEWIEFS_MOUNT_CHEWIEFS_H_ 271.1Sahoka#define _SBIN_MOUNT_CHEWIEFS_MOUNT_CHEWIEFS_H_ 281.1Sahoka 291.1Sahoka#include <ufs/ufs/ufsmount.h> 301.1Sahoka 311.1Sahoka#ifndef MOUNT_CHEWIEFS 321.1Sahoka#define MOUNT_CHEWIEFS "chfs" 331.1Sahoka#endif 341.1Sahoka 351.1Sahoka 361.1Sahokaint mount_chfs(int, char **); 371.1Sahokavoid mount_chfs_parseargs(int, char **, struct ufs_args *, int *, 381.1Sahoka char *, char *); 391.1Sahoka 401.1Sahoka#endif /* _SBIN_MOUNT_CHEWIEFS_MOUNT_CHEWIEFS_H_ */ 41