summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extract/src/mem.h')
-rw-r--r--extract/src/mem.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/extract/src/mem.h b/extract/src/mem.h
new file mode 100644
index 00000000..59729b1a
--- /dev/null
+++ b/extract/src/mem.h
@@ -0,0 +1,14 @@
+#ifndef EXTRACT_MEM_H
+#define EXTRACT_MEM_H
+
+#include <stdarg.h>
+#include <string.h>
+
+void extract_bzero(void *b, size_t len);
+
+int extract_vasprintf(extract_alloc_t* alloc, char** out, const char* format, va_list va);
+int extract_asprintf(extract_alloc_t* alloc, char** out, const char* format, ...);
+
+int extract_strdup(extract_alloc_t* alloc, const char* s, char** o_out);
+
+#endif