SSTOM(<N seconds>)
Converts seconds to minutes.
Returns <expN> number of minutes that equal <seconds>.

Useful in applications that handle time by minutes.

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

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

* Total time of operation in minutes
mins_time = SSTOM( secs_time )


Placed in the Public Domain by Tom Rettig Assoc.