Important: The information in this document is obsolete and should not be used for new development.
WideAdd
You can use theWideAdd
function to add twowide
numbers.
wide *WideAdd(wide *target, const wide *source);
target
- A pointer to the number to be added to. On return, contains the sum of the two numbers.
source
- A pointer to the number that is to be added to the target number.
- function result
- A pointer to the result (also a pointer to the target number).
DESCRIPTION
TheWideAdd
function adds thewide
number in thesource
parameter to thewide
number in thetarget
parameter and returns the target pointer.