aboutsummaryrefslogtreecommitdiffstats
path: root/include/heap.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/heap.h')
-rw-r--r--include/heap.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/heap.h b/include/heap.h
new file mode 100644
index 0000000..e04b15e
--- /dev/null
+++ b/include/heap.h
@@ -0,0 +1,11 @@
+#ifndef HEAP_H_
+#define HEAP_H_
+
+#include <stdint.h>
+
+uint32_t heap_available(void);
+
+void *hmalloc(uint32_t size);
+void *hcalloc(uint32_t count, uint32_t size);
+
+#endif // HEAP_H_