1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 17:44:56 +09:00
ladybird/AK/SimpleMalloc.h

15 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);
}