Return a pointer to the whole string as a null terminated sequence. Arguments: None

Return TypeFunction nameArguments
hzStringhzUrl::Whole(void)

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

Function Logic:

0:START 1:unknown 2:thisCtl S 3:Return S

Function body:

hzString hzUrl::Whole (void)
{
   //  Return a pointer to the whole string as a null terminated sequence.
   //  
   //  Arguments: None
   //  Returns: Instance of hzString by value being whole URL
   _url_space*     thisCtl ;   //  This URL space
   hzString        S ;         //  Target hzString for whole URL
   if (m_addr)
   {
       thisCtl = _urlXlate(m_addr) ;
       S = thisCtl->m_data ;
   }
   return S ;
}