summaryrefslogtreecommitdiff
path: root/archive/src/std/buf.h
diff options
context:
space:
mode:
Diffstat (limited to 'archive/src/std/buf.h')
-rw-r--r--archive/src/std/buf.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/archive/src/std/buf.h b/archive/src/std/buf.h
new file mode 100644
index 0000000..77fc7b9
--- /dev/null
+++ b/archive/src/std/buf.h
@@ -0,0 +1,11 @@
+/**
+ * @file buf.h
+ * @brief
+ */
+#pragma once
+#include "defines.h"
+
+typedef struct bytebuffer {
+ u8* buf;
+ size_t size;
+} bytebuffer;