home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / GEARS.ZIP / VALUE.DOC < prev    next >
Encoding:
Text File  |  1980-01-01  |  816 b   |  16 lines

  1. (*****************************************************************************)
  2. (* Unit Value: Numerical Type Conversion Functions             DOCUMENTATION *)
  3. (*                                                                           *)
  4. (* Copyright 1988, Escape Technologies                                       *)
  5. (*****************************************************************************)
  6.  
  7. Unit Value;
  8.  
  9. Interface
  10.  
  11. Function LongVal(Ascii:String):LongInt;              { String to LongInt }
  12. Function IntVal(Ascii:String):Integer;               { String to Integer }
  13. Function WordVal(Ascii:String):Word;                 { String to Word    }
  14. Function RealVal(St:String):Real;                    { String to Real    }
  15. Function HexStr(I:Integer):String;                   { Decimal to Hex    }
  16.