Return the 2-byte country code

Return TypeFunction nameArguments
const char*GetCountryCode(uint32_t,)

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

Function Logic:

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

Function body:

const char* GetCountryCode (uint32_t countryRID)
{
   //  Category: Internet
   //  
   //  Return the 2-byte country code
   _hzfunc(__func__) ;
   if (countryRID > s_CC_max)
       return s_CC_buffer ;
   return s_CC_buffer + s_CC_offsets[countryRID] ;
}