home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Product / Product.zip / DBDEMO.ZIP / DEMOFLS.ZIP / DELTA.C < prev    next >
Text File  |  1991-06-03  |  297b  |  13 lines

  1. #include <sys\timeb.h>
  2. double  delta(a, b, c, d)
  3. time_t a,b;
  4. unsigned short c,d;
  5. {
  6.     double e;
  7.     e = (double) (b - a);
  8.     e = e*1000.0 +(d - c);
  9.     e = e/((1000.0));
  10.     return(e);
  11. }/* end delta */
  12. /*****************************************************************************/
  13.