1/* volume_util.h - volume functions
2 *
3 * Copyright (c) 2006-2007 Troeglazov Gerasim (3dEyes**)
4 *
5 * This program/include file is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as published
7 * by the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program/include file is distributed in the hope that it will be
11 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program (in the main directory of the Linux-NTFS
17 * distribution in the file COPYING); if not, write to the Free Software
18 * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21
22#ifndef _NTFSFS_VOLUTIL_H_
23#define _NTFSFS_VOLUTIL_H_
24
25int ntfs_calc_free_space(nspace *ns);
26int ntfs_change_label(ntfs_volume *vol, char *label);
27
28#endif