home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
xbase
/
library
/
clipper
/
rettig
/
source
/
sstom.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-10-21
|
366b
|
20 lines
/*********
* SSTOM
* by Tom Rettig
* Placed in the public domain by Tom Rettig Associates, 10/22/1990.
*
* Syntax: SSTOM( <expN> )
* Return: Numeric minutes from <expN> seconds.
*********/
#include "trlib.h"
TRTYPE sstom()
{
if ( PCOUNT == 1 && ISNUM(1) )
_retnd( (double)_parnl(1) / 60 );
else
_retnd( (double)ERROR );
}