home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_08 / 2n08068a < prev    next >
Text File  |  1991-06-30  |  164b  |  14 lines

  1. int find(const char *s)
  2.     {
  3. #ifdef DEBUG
  4.     fprintf(stderr, "entering find\n");
  5. #endif
  6.  
  7.     ...
  8.  
  9. #ifdef DEBUG
  10.     fprintf(stderr, "leaving find\n");
  11. #endif
  12.     }
  13.  
  14.