mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-05-15 09:01:27 -07:00
12 lines
179 B
C
12 lines
179 B
C
#ifndef HEAP_H
|
|
#define HEAP_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void heap_init(void *heap_start, void *heap_end);
|
|
|
|
void *heap_alloc(size_t size);
|
|
void heap_free(void *ptr);
|
|
|
|
#endif // HEAP_H
|