home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume3 / pcmail / part08 / logs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-03  |  873 b   |  40 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) if (dflag >= l) dbg    /* yuk! */
  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 void dbg();            /* write debug info */
  25. extern void log();            /* write loggin info */
  26. /* FILES
  27. /*    logfile
  28. /* AUTHOR(S)
  29. /*    W.Z. Venema
  30. /*    Eindhoven University of Technology
  31. /*    Department of Mathematics and Computer Science
  32. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  33. /* CREATION DATE
  34. /*    Sun Apr 12 13:45:11 GMT+1:00 1987
  35. /* LAST MODIFICATION
  36. /*    Mon Apr  4 23:44:17 MET 1988
  37. /* VERSION/RELEASE
  38. /*    1.3
  39. /*--*/
  40.