Skip to content

Instantly share code, notes, and snippets.

#include "linked_list.h"
void Init(int M, int B){
total_size = M;
working_size = total_size;
block_size = B;
head = NULL;
free_ptr =(char*) malloc (total_size);
}