Return TypeFunction nameArguments
hzStringTagtype2Txt(hzHtagtype,)

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

Function Logic:

0:START 1:!s_htagNam.Count() 2:InitHtml 3:type 4:Return s_tagformDuff.name 5:s_htagTyp.Count()<=(uint32_t)type 6:Return s_tagformDuff.name 7:Return s_htagTyp[type].name

Function body:

hzString Tagtype2Txt (hzHtagtype type)
{
   if (!s_htagNam.Count())
       InitHtml() ;
   if (type < HTAG_NULL)
       return s_tagformDuff.name ;
   if (s_htagTyp.Count() <&eq; (uint32_t) type)
       return s_tagformDuff.name ;
   return s_htagTyp[type].name ;
}