Add section "Notes on disk format" to the manual.
[virt-bmap.git] / cleanups.c
1 /* cleanup functions (from libguestfs)
2  * Copyright (C) 2010-2014 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include <config.h>
20
21 #include <stdio.h>
22 #include <stdlib.h>
23
24 #include <guestfs.h>
25
26 void
27 cleanup_free (void *ptr)
28 {
29   free (* (void **) ptr);
30 }
31
32 void
33 free_string_list (char **argv)
34 {
35   size_t i;
36
37   if (argv == NULL)
38     return;
39
40   for (i = 0; argv[i] != NULL; ++i)
41     free (argv[i]);
42   free (argv);
43 }
44
45 void
46 cleanup_free_string_list (char ***ptr)
47 {
48   free_string_list (*ptr);
49 }
50
51 void
52 cleanup_free_statns (void *ptr)
53 {
54   guestfs_free_statns (* (struct guestfs_statns **) ptr);
55 }
56
57 void
58 cleanup_free_xattr_list (void *ptr)
59 {
60   guestfs_free_xattr_list (* (struct guestfs_xattr_list **) ptr);
61 }
62
63 void
64 cleanup_free_stat_list (void *ptr)
65 {
66   guestfs_free_stat_list (* (struct guestfs_stat_list **) ptr);
67 }