summaryrefslogtreecommitdiff
path: root/src/fspec/memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fspec/memory.h')
-rw-r--r--src/fspec/memory.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/fspec/memory.h b/src/fspec/memory.h
new file mode 100644
index 0000000..768415a
--- /dev/null
+++ b/src/fspec/memory.h
@@ -0,0 +1,8 @@
+#pragma once
+
+#include <stddef.h>
+
+struct fspec_mem {
+ void *data;
+ size_t len;
+};