Converts the supplied int32_t number (arg 1) to the textual equivelent (as the number would be spoken)

Return TypeFunction nameArguments
hzStringSpeakNumber(int32_t,)

Declared in file: hzTextproc.h
Defined in file : hzTextproc.cpp

Function Logic:

0:START 1:items S 2:Return S

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 ;
}