Return TypeFunction nameArguments
const char*GetCountryName(unsigned int,)

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

Function Logic:

0:START 1:countryRID>s_CC_max 2:Return s_CC_buffer 3:Return s_CC_buffer+s_CC_offsets[countryRID]+3

Function body:

const char* GetCountryName (unsigned int countryRID)
{
   _hzfunc(__func__) ;
   if (countryRID > s_CC_max)
       return s_CC_buffer ;
   return s_CC_buffer + s_CC_offsets[countryRID] + 3;
}