home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.lbl.gov / 2014.05.ftp.ee.lbl.gov.tar / ftp.ee.lbl.gov / acld-1.11.tar.gz / acld-1.11.tar / acld-1.11 / timer.h < prev    next >
C/C++ Source or Header  |  2008-10-24  |  280b  |  14 lines

  1. /* @(#) $Id: timer.h 529 2008-10-24 06:57:49Z leres $ (LBL) */
  2. #ifndef acld_timer_h
  3. #define acld_timer_h
  4.  
  5. struct timer {
  6.     time_t duetime;
  7. };
  8.  
  9. int timercheck(struct timer *);
  10. int timerdue(struct timer *);
  11. void timerreset(struct timer *);
  12. void timerset(struct timer *, int);
  13. #endif
  14.