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

Return TypeFunction nameArguments
boolhzAttrset::ValEQ(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.value==cstr?true:false

Function body:

bool hzAttrset::ValEQ (const char* cstr)
{
   //  Confirm or deny that the current attribute value equals the supplied null terminated string
   //  
   //  Argument: cstr The test string
   //  
   //  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_B), cstr) == 0 ? true : false ;
   return m_Pair.value == cstr ? true : false ;
}