SSTOH(<N seconds>)
Converts seconds to hours.
Returns <expN> number of hours that equal <seconds>.

Useful in applications that handle time by hours.

* Time an operation
start_time = SECONDS()
<operation to be timed>
end_time = SECONDS() % SECONDS() is Clipper only function

* Total time of operation in seconds
secs_time = end_time - start_time

* Total time of operation in hours
hours_time = SSTOH( secs_time )


Placed in the Public Domain by Tom Rettig Assoc.