home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_07_07 / v7n7106a.txt < prev    next >
Text File  |  1989-09-05  |  601b  |  29 lines

  1. /*
  2.  *    Title:         HEAP.H
  3.  *    Name:          Heap library source code
  4.  *    Programmer:    Avi  Farah
  5.  *    Date:          21 June, 1988.
  6.  *
  7.  *    Heap tracing / debugging facility
  8.  *
  9.  *    The module was compiled under the Microsoft C 5.1 compiler 
  10.  *
  11.  *    (C) Copyright Avi Farah, 1988.
  12.  */
  13.  
  14.  
  15.  
  16.  
  17. #define  HEAPLOOK( ch )       HeapLOOK(__FILE__, __LINE__, ch)
  18. #define  MEMTRACE()           MemTrace(__FILE__, __LINE__)
  19.  
  20.  
  21.  
  22.  
  23. /*
  24.  *    Prototypes.
  25.  */
  26. void  HeapLOOK( char szFile[],  unsigned uLine,  char cFillChr );
  27. void  MemTrace( char szFile[],  unsigned uLine );
  28.  
  29.