Skip to content

functionaldude/Malloc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Malloc Build Status ##Description

This is my own implementation of malloc, free, realloc and calloc.

##Usage

Just copy and paste malloc.h and malloc.c in your project and include malloc.h in your *.c/*.cpp files or use make to generate a static library.

The function calls are defined in the POSIX standard:

void *malloc(size_t size);
void *calloc(size_t nmemb, size_t size);
void *realloc(void *ptr, size_t size);
void free(void *ptr);

About

my own malloc/free implementation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published