aboutsummaryrefslogtreecommitdiff
path: root/include/std/mem.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/std/mem.h')
-rw-r--r--include/std/mem.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/std/mem.h b/include/std/mem.h
new file mode 100644
index 0000000..a5fe9b4
--- /dev/null
+++ b/include/std/mem.h
@@ -0,0 +1,11 @@
+#ifndef AMALGAM_MEM_H
+#define AMALGAM_MEM_H
+
+#include "types.h"
+#include "misc.h"
+
+void am_memcpy(void *dest, const void *src, usize size);
+bool am_memeql(const void *lhs, const void *rhs, usize size);
+void am_memset(void *dest, int value, usize size);
+
+#endif \ No newline at end of file