Skip to content

LowLevelCodingCH/ChunkAllocator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Chunk Allocator (MWrite)

Usecases:

- You can allocate memory, so use it ig

How to use:

To allocate a string, you do:

char* string = (char*)mwrite(sizeof(char)*15);
string = "Hello, world!\n\0";
// Do stuff with the string
mfree(string);

Releases

No releases published

Packages

No packages published

Languages