Return true if this hzUrl is not equal to the supplied character string

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

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

Function Logic:

0:START 1:unknown 2:Return false 3:unknown 4:Return true 5:unknown 6:Return true 7:Return Whole()==cpStr?false:true

Function body:

bool hzUrl::operator!= (const char* cpStr)
{
   //  Return true if this hzUrl is not equal to the supplied character string
   if ((!cpStr || !cpStr[0])&& !m_addr)
       return false ;
   if (!cpStr || !cpStr[0])return true ;
   if (!m_addr)                return true ;
   return Whole() == cpStr ? false : true ;
}