Important: The information in this document is obsolete and should not be used for new development.
WideSubtract
You can use theWideSubtract
function to subtract onewide
number from another.
wide *WideSubtract(wide *target, const wide *source);
target
- A pointer to the number to be subtracted from. On return, contains the difference between the two numbers.
source
- A pointer to the number that is to be subtracted from the number at target.
- function result
- A pointer to the target number.
DESCRIPTION
TheWideSubtract
function subtracts the source number from the target number and returns a pointer to the target number.