2022-08-21 19:18:53 +00:00
|
|
|
#pragma once
|
2022-09-02 19:09:51 +00:00
|
|
|
#include <stddef.h>
|
2022-08-21 19:18:53 +00:00
|
|
|
#include <stdint.h>
|
2022-09-02 19:09:51 +00:00
|
|
|
#include "../terminal/kterm.h"
|
2022-08-21 19:18:53 +00:00
|
|
|
|
|
|
|
void initHeap();
|
|
|
|
|
|
|
|
void* malloc (size_t size );
|
|
|
|
void free(void* addr);
|
|
|
|
|