/*
* call-seq:
* lang
*
* Get the xml:lang scope within which the node resides.
*/
static VALUE lang(VALUE self)
{
xmlTextReaderPtr reader;
const char *lang;
Data_Get_Struct(self, xmlTextReader, reader);
lang = (const char *)xmlTextReaderConstXmlLang(reader);
if(lang == NULL) return Qnil;
return NOKOGIRI_STR_NEW2(lang);
}