home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 21.17 SEC2HOURS()
- Author: Joe Booth
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- //───── NOTE: must compile with the /N option!
-
- function sec2hours(nSeconds)
- LOCAL hh:= int(nSeconds/3600),mm:=nSeconds % 3600,ss:=0
- mm:= int(mm/60)
- ss:= mm % 60
- return hh+(mm/100)
-
- // end of file CHP2117.PRG
-