Math
The Math module provides number format conversion functions. These routines convert between string representations (decimal, hexadecimal, binary) and numeric values, and vice versa.
String to Value
| Function | Description |
|---|---|
| StringDecToValue | Convert a decimal string to a LONG value |
| StringHexToValue | Convert a hexadecimal string to a LONG value |
| StringBinToValue | Convert a binary string to a LONG value |
Value to String
| Function | Description |
|---|---|
| ValueToStringDec | Convert a LONG value to a decimal string |
| ValueToStringHex | Convert a LONG value to a hexadecimal string |
| ValueToStringBin | Convert a LONG value to a binary string |
All conversion functions operate on 32-bit signed LONG values and use fast lookup tables for optimal performance on the 68020 processor.
Last updated on