Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 369 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 369 Bytes

Malloc

A dynamic memory allocator. Project done for CSAPP course at CMUQ.

Files written by me:

  • mm.c All other files included are auxiliary files.

Description

This code represents my version of a dynamic memory allocater. It implements the following functions:

  • malloc
  • free
  • calloc
  • realloc

Details on the implementation can be found in mm.c.