Confirm or deny that the current attribute name equals the supplied null terminated string

Return TypeFunction nameArguments
boolhzAttrset::NameEQ(const char*,)

Declared in file: hzDocument.h
Defined in file : hzDocXml.cpp

Function Logic:

0:START 1:unknown 2:Return false 3:Return m_Pair.name==cstr?true:false

Function body:

bool hzAttrset::NameEQ (const char* cstr)
{
   //  Confirm or deny that the current attribute name equals the supplied null terminated string
   //  
   //  Argument: cstr The test name
   //  
   //  Returns: True If the supplied test string matches the name
   //     false otherwise
   if (!m_pHostDoc)
       return false ;
   //  return CstrCompare(m_pHostDoc->Xlate(m_Pair.m_A), cstr) == 0 ? true : false ;
   return m_Pair.name == cstr ? true : false ;
}