1*99fed726Spooka /* $NetBSD: mount_ext2fs.h,v 1.1 2008/08/05 20:57:45 pooka Exp $ */ 2*99fed726Spooka 3*99fed726Spooka /* 4*99fed726Spooka * Copyright (c) 2008 The NetBSD Foundation. All Rights Reserved. 5*99fed726Spooka * 6*99fed726Spooka * Redistribution and use in source and binary forms, with or without 7*99fed726Spooka * modification, are permitted provided that the following conditions 8*99fed726Spooka * are met: 9*99fed726Spooka * 1. Redistributions of source code must retain the above copyright 10*99fed726Spooka * notice, this list of conditions and the following disclaimer. 11*99fed726Spooka * 2. Redistributions in binary form must reproduce the above copyright 12*99fed726Spooka * notice, this list of conditions and the following disclaimer in the 13*99fed726Spooka * documentation and/or other materials provided with the distribution. 14*99fed726Spooka * 15*99fed726Spooka * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 16*99fed726Spooka * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17*99fed726Spooka * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18*99fed726Spooka * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19*99fed726Spooka * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20*99fed726Spooka * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 21*99fed726Spooka * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22*99fed726Spooka * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23*99fed726Spooka * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24*99fed726Spooka * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25*99fed726Spooka * SUCH DAMAGE. 26*99fed726Spooka */ 27*99fed726Spooka 28*99fed726Spooka #ifndef _SBIN_MOUNT_EXT2FS_MOUNT_EXT2FS_H_ 29*99fed726Spooka #define _SBIN_MOUNT_EXT2FS_MOUNT_EXT2FS_H_ 30*99fed726Spooka 31*99fed726Spooka #include <ufs/ufs/ufsmount.h> 32*99fed726Spooka 33*99fed726Spooka int mount_ext2fs(int, char **); 34*99fed726Spooka void mount_ext2fs_parseargs(int, char **, struct ufs_args *, int *, 35*99fed726Spooka char *, char *); 36*99fed726Spooka 37*99fed726Spooka #endif /* _SBIN_MOUNT_EXT2FS_MOUNT_EXT2FS_H_ */ 38