aboutsummaryrefslogtreecommitdiffstats
path: root/include/heap.h
blob: e04b15e469574432c3144ddd198b71e73fe9b737 (plain)
1
2
3
4
5
6
7
8
9
10
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_