Return the country Name
| Return Type | Function name | Arguments |
|---|---|---|
| const char* | GetCountryName | (uint32_t,) |
Declared in file: hzIpaddr.h
Defined in file : hzIpaddr.cpp
Function Logic:
Function body:
const char* GetCountryName (uint32_t countryRID)
{
// Category: Internet
//
// Return the country Name
_hzfunc(__func__) ;
if (countryRID > s_CC_max)
return s_CC_buffer ;
return s_CC_buffer + s_CC_offsets[countryRID] + 3;
}