home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
crosscom
/
tptc
/
source
/
ftoa.inc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1988-03-25
|
189 b
|
16 lines
(*
* convert floating to ascii
*
*)
function ftoa(f: real; width,dec: integer): anystring;
var
buf: anystring;
begin
str(f:width:dec,buf);
ftoa := buf;
end;