home *** CD-ROM | disk | FTP | other *** search
- /*********
- * HTOSS
- * by Tom Rettig
- * Placed in the public domain by Tom Rettig Associates, 10/22/1990.
- *
- * Syntax: HTOSS( <expN> )
- * Return: Numeric seconds from <expN> hours.
- *********/
-
- #include "trlib.h"
-
- TRTYPE htoss()
- {
- if ( PCOUNT == 1 && ISNUM(1) )
- _retnl( (long)(_parnd(1)*3600) );
- else
- _retnl( (long)ERROR );
- }
-