mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-15 07:09:43 +03:00
16 lines
198 B
C
16 lines
198 B
C
|
#pragma once
|
||
|
|
||
|
#include "Types.h"
|
||
|
|
||
|
namespace SimpleMalloc {
|
||
|
|
||
|
void initialize();
|
||
|
void dump();
|
||
|
byte* allocate(dword);
|
||
|
byte* allocateZeroed(dword);
|
||
|
void free(byte*);
|
||
|
byte* reallocate(byte*, dword);
|
||
|
|
||
|
}
|
||
|
|