Introduction - If you have any usage issues, please Google them yourself
write part of a dynamic storage allocationpackage. The package provides three function calls: void initalloc(), toinitialize the data structures involved char* alloc(int n), which returnsa pointer to a block of n chars when called and void freef(char* p), whichfrees the block of n chars earlier given to the data structure so thatit can be given out to another.