Important: The information in this document is obsolete and should not be used for new development.
WideSquareRoot
You can use theWideSquareRoot
function to calculate the square root of awide
number.
unsigned long WideSquareRoot(const wide *source);
source
- A pointer to the number for which the square root is to be calculate
d.
- function result
- A number that is the square root of the number in the argument.
DESCRIPTION
TheWideSquareRoot
function returns the square root of thewide
number pointed to by thesource
parameter. The source value for this function must be an unsignedwide
value ranging from 0 to 264 - 1, not -263 to 263 - 1. If you supply a non-integer value for this function, its bias must be an even number of bits.