MemCheckDeluxe, v1.2.2 Copyright 2002, 2003 Softpixel (http://softpixel.com) Chris Wright (cwright@softpixel.com) MemCheckDeluxe is a slightly enhanced leak finder/memory profiler. It tracks all the memory allocated, and can report where it was created at the end of a program (memory that would have been leaked). It tracks the largest and smallest chunks allocated, the maximum memory used, and the maximum number of allocations at any time (in case your memory manager has certain restrictions). ******************** ** Installation ** ******************** MemCheckDeluxe isn't really a library, but a set of source files to be included in a project. just have files include mcd.h, and add mcd.c to the objects to compile, and it should be good to go. Don't forget to define _MCD_CHECK before including the mcd.h. A better way may be to add -D_MCD_CHECK in the Makefile(s) or project settings. A really simple example is demonstrated in the example directory.