home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume10 / pcmail2 / part01 / main / logs.h < prev    next >
C/C++ Source or Header  |  1990-01-24  |  851b  |  41 lines

  1. /*++
  2. /* NAME
  3. /*    logs 5
  4. /* SUMMARY
  5. /*    various message services
  6. /* PROJECT
  7. /*    pc-mail
  8. /* PACKAGE
  9. /*    cico
  10. /* SYNOPSIS
  11. /*    #include "logs.h"
  12. /* DESCRIPTION
  13. /* .nf
  14.  
  15.  /* globally visible components */
  16.  
  17. #define debug(l) (dflag >= l) && dbg    /* yuck! */
  18.  
  19. extern int dflag;            /* debugging level */
  20. extern int *systrap;            /* panic button */
  21.  
  22. extern void trap();            /* exception handler */
  23. extern int open_log();            /* open log file */
  24. extern int dbg();            /* write debug info */
  25. extern void log();            /* write logging info */
  26.  
  27. /* FILES
  28. /*    $MAILDIR/logfile
  29. /* AUTHOR(S)
  30. /*    W.Z. Venema
  31. /*    Eindhoven University of Technology
  32. /*    Department of Mathematics and Computer Science
  33. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  34. /* CREATION DATE
  35. /*    Sun Apr 12 13:45:11 GMT+1:00 1987
  36. /* LAST MODIFICATION
  37. /*    90/01/22 13:02:03
  38. /* VERSION/RELEASE
  39. /*    2.1
  40. /*--*/
  41.