home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
xbase
/
library
/
clipper
/
rettig
/
tr_bin.prg
< prev
next >
Wrap
Text File
|
1990-10-21
|
330b
|
17 lines
*********
* Function : BIN
* By : Tom Rettig
* Placed in the public domain by Tom Rettig Associates, 10/22/1990.
*********
FUNCTION BIN
* Syntax: BIN( <expN> )
* Return: <expC> binary (base two) value of <expN> decimal parameter
* -1 if <expN> is negative
PARAMETERS dec
RETURN BASE( 2, dec )
* eofunc