home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST254.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  333 b   |  19 lines

  1. *******************
  2.  
  3. FUNCTION Etime
  4.  
  5.    PARAMETERS _a, _b
  6.  
  7.    * _a is a beginning time string
  8.    * _b is an ending time string
  9.  
  10.    IF PCOUNT() != 2
  11.       RETURN("")
  12.    ELSEIF TYPE("_a")+TYPE("_b") != "CC"
  13.       RETURN("")
  14.    ENDIF
  15.  
  16.    RETURN(STIME( IF( _b < _a, 86400,0) + SECS_GO(_b)-SECS_GO(_a)))
  17.  
  18. * End of File
  19.