summaryrefslogtreecommitdiff
path: root/libblkid-tiny/probe.c
diff options
context:
space:
mode:
Diffstat (limited to 'libblkid-tiny/probe.c')
-rw-r--r--libblkid-tiny/probe.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/libblkid-tiny/probe.c b/libblkid-tiny/probe.c
new file mode 100644
index 0000000..54e22dc
--- /dev/null
+++ b/libblkid-tiny/probe.c
@@ -0,0 +1,31 @@
+/*
+ * Low-level libblkid probing API
+ *
+ * Copyright (C) 2008-2009 Karel Zak <kzak@redhat.com>
+ *
+ * This file may be redistributed under the terms of the
+ * GNU Lesser General Public License.
+ */
+
+#include <stdlib.h>
+
+#include "libblkid-tiny.h"
+
+struct blkid_struct_probe *blkid_new_probe(void)
+{
+ struct blkid_struct_probe *pr;
+
+ pr = calloc(1, sizeof(struct blkid_struct_probe));
+ if (!pr)
+ return NULL;
+
+ return pr;
+}
+
+void blkid_free_probe(struct blkid_struct_probe *pr)
+{
+ if (!pr)
+ return;
+
+ free(pr);
+}