home *** CD-ROM | disk | FTP | other *** search
-
- (*
- *
- * converts ascii string to an float value
- *
- *)
-
- function atof (asc: anystring): real;
- var
- code: integer;
- value: real;
-
- begin
- while copy(asc,1,1) = ' ' do
- delete(asc,1,1);
- val(asc, value, code);
- atof := value;
- end;
-