Converts the supplied int32_t number (arg 1) to the textual equivelent (as the number would be spoken)
| Return Type | Function name | Arguments |
|---|---|---|
| hzString | SpeakNumber | (int32_t,) |
Declared in file: hzTextproc.h
Defined in file : hzTextproc.cpp
Function Logic:
Function body:
hzString SpeakNumber (int32_t num)
{
// Category: Text Presentation
//
// Converts the supplied int32_t number (arg 1) to the textual equivelent (as the number would be spoken)
//
// Arguments: 1) nValue The numeric value
//
// Returns: Instance of hzString by value being text equivelent of supplied number
hzChain Z ; // Working chain
hzString S ; // Target string
SpeakNumber(Z, num) ;
S = Z ;
return S ;
}