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