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

  1. ********************
  2.  
  3. FUNCTION Secs_go
  4.  
  5.    PARAMETERS _c
  6.  
  7.    IF EMPTY(PCOUNT())
  8.       RETURN(0)
  9.    ELSEIF TYPE("_c") != "C"
  10.       RETURN(0)
  11.    ENDIF
  12.  
  13.    * _c is a time string
  14.    
  15.    RETURN(VAL(_c) * 3600 + VAL(SUBSTR(_c,4)) * 60 + VAL(SUBSTR(_c,7)))
  16.  
  17. * End of File
  18.