1/*
2 libparted - a library for manipulating disk partitions
3 Copyright (C) 1999-2001, 2007, 2009-2012 Free Software Foundation, Inc.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 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. If not, see <http://www.gnu.org/licenses/>.
17*/
18
19#ifndef PARTED_H_INCLUDED
20#define PARTED_H_INCLUDED
21
22#define PED_DEFAULT_ALIGNMENT (1024 * 1024)
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
28#if __GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
29# define __attribute(arg) __attribute__ (arg)
30#else
31# define __attribute(arg)
32#endif
33
34#include <parted/constraint.h>
35#include <parted/device.h>
36#include <parted/disk.h>
37#include <parted/exception.h>
38#include <parted/filesys.h>
39#include <parted/natmath.h>
40#include <parted/unit.h>
41
42#include <stdint.h>
43#include <stdlib.h>
44#include <string.h>
45
46extern const char *ped_get_version ()
47#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
48 __attribute ((__const__))
49#endif
50;
51
52extern void* ped_malloc (size_t size);
53extern void* ped_calloc (size_t size);
54extern void free (void* ptr);
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif /* PARTED_H_INCLUDED */
61