difftime.c
上传用户:baixin
上传日期:2008-03-13
资源大小:4795k
文件大小:1k
开发平台:

MultiPlatform

  1. /* difftime.c - difftime file for time */
  2. /* Copyright 1992-1993 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01d,04oct01,dcb  Fix SPR 7191.  Cast time1 and time2 before subtracting.
  7. 01c,05feb93,jdi  documentation cleanup for 5.1.
  8. 01b,20sep92,smb  documentation additions
  9. 01a,25jul92,smb  written.
  10. */
  11. /*  
  12. DESCRIPTION  
  13.   
  14. INCLUDE FILE: time.h
  15.    
  16. SEE ALSO: American National Standard X3.159-1989 
  17. NOMANUAL
  18. */
  19. #include "vxWorks.h"
  20. #include "time.h"
  21. /*******************************************************************************
  22. *
  23. * difftime - compute the difference between two calendar times (ANSI)
  24. *
  25. * This routine computes the  difference between two calendar times: 
  26. * <time1> - <time0>.
  27. *
  28. * INCLUDE FILES: time.h
  29. *
  30. * RETURNS: The time difference in seconds, expressed as a double.
  31. */
  32.   
  33. double difftime
  34.     (
  35.     time_t time1, /* later time, in seconds */
  36.     time_t time0 /* earlier time, in seconds */
  37.     )
  38.     {
  39.     /* This function assumes that sizeof(time_t) is <= sizeof(double). */
  40.     
  41.     return (double)time1 - (double)time0;
  42.     }