1235537Sgber/*-
2235537Sgber * Copyright (c) 2012 The FreeBSD Foundation
3235537Sgber * All rights reserved.
4235537Sgber *
5235537Sgber * This software was developed by Semihalf under sponsorship
6235537Sgber * from the FreeBSD Foundation.
7235537Sgber *
8235537Sgber * Redistribution and use in source and binary forms, with or without
9235537Sgber * modification, are permitted provided that the following conditions
10235537Sgber * are met:
11235537Sgber *
12235537Sgber * 1. Redistributions of source code must retain the above copyright
13235537Sgber *    notice, this list of conditions and the following disclaimer.
14235537Sgber * 2. Redistributions in binary form must reproduce the above copyright
15235537Sgber *    notice, this list of conditions and the following disclaimer in the
16235537Sgber *    documentation and/or other materials provided with the distribution.
17235537Sgber *
18235537Sgber * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19235537Sgber * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20235537Sgber * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21235537Sgber * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22235537Sgber * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23235537Sgber * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24235537Sgber * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25235537Sgber * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26235537Sgber * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27235537Sgber * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28235537Sgber * SUCH DAMAGE.
29235537Sgber *
30235537Sgber * $FreeBSD$
31235537Sgber */
32235537Sgber
33235537Sgber#ifndef NANDFS_H
34235537Sgber#define NANDFS_H
35235537Sgber
36235537Sgberint nandfs_lssnap(int, char **);
37235537Sgberint nandfs_mksnap(int, char **);
38235537Sgberint nandfs_rmsnap(int, char **);
39235537Sgber
40235537Sgber#endif /* !NANDFS_H */
41