HexToDecimal
No description available for this symbol.
Syntax
stock HexToDecimal( const szHex[ ] ) stock DecimalToHex( const iDecimal, szHexResult[ ], const iHexLen ) stock BinaryToDecimal( const szBinary[ ] ) stock DecimalToBinary( const iDecimal, szBinary[ ], const iBinaryLen ) stock BinaryToHex( const szBinary[ ], szHexResult[ ], const iHexLen ) stock HexToBinary( const szHex[ ], szBinaryResult[ ], const iBinaryLen ) // Retrives digits from a given value and returns the number of digits // // @param iValue - The value from which to get the digits // @param iDigits[ ] - The array to store the digits in (optional) // @param iDigitSize - The size of the array (optional) // @param iBase - The base of the number to find digits by (default is 10 for base 10 (decimal)) (optional) // @param bKeepDigitOrder - Decides to start from the right side of the decimal or left (default is false) (optional) (see post for more details) // // @return The total number of digits found // stock GetDigits( const iValue, iDigits[ ] = "", const iDigitSize = 0, const iBase = 10, bool:bKeepDigitOrder = false ) stock ReverseArray( iArray[ ], const iSize ) */ #include < amxmodx >
Defined in
number_convert.inc
at line 6
.
This documentation was automatically generated from source.