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