Return TypeFunction nameArguments
boolhzDomain::operator!=(const char*,)

Declared in file: hzEmaddr.h
Defined in file : hzDomain.cpp

Function Logic:

0:START 1:(!cpStr||!cpStr[0])&&!m_addr 2:Return false 3:!cpStr||!cpStr[0] 4:Return true 5:!m_addr 6:Return true 7:hzSSR::Xlate thisCtl 8:Return CstrCompare((char*)thisCtl->m_data,cpStr)==0?false:true

Function body:

bool hzDomain::operator!= (const char* cpStr)
{
   _hzfunc("hzDomain::operator!=") ;
   _dom_space* thisCtl ;
   if ((!cpStr || !cpStr[0])&& !m_addr)
       return false ;
   if (!cpStr || !cpStr[0])
       return true ;
   if (!m_addr)
       return true ;
   thisCtl = (_dom_space*) g_ssrInet.Xlate(m_addr) ;
   return CstrCompare((char*) thisCtl->m_data, cpStr) == 0? false:true ;
}