/*
* call-seq:
* local_name
*
* Get the local name of the node
*/
static VALUE local_name(VALUE self)
{
xmlTextReaderPtr reader;
const char *name;
Data_Get_Struct(self, xmlTextReader, reader);
name = (const char *)xmlTextReaderConstLocalName(reader);
if(name == NULL) return Qnil;
return NOKOGIRI_STR_NEW2(name);
}