home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_08 / 2n08068b < prev    next >
Text File  |  1991-05-31  |  220b  |  22 lines

  1.  
  2.  
  3. Listing 6
  4.  
  5. #ifdef DEBUG
  6.     #define trace(p) fprintf(stderr, #p "\n")
  7. #else
  8.     #define trace(p) ((void)0)
  9. #endif
  10.  
  11. ...
  12.  
  13. int find(const char *s)
  14.     {
  15.     trace(entering find);
  16.  
  17.     ...
  18.  
  19.     trace(leaving find);
  20.     }
  21.  
  22.