/*
* Return the Node's _vid_ member. The return type is a
* Symbol.
*/
static VALUE node_vid(VALUE self)
{
NODE * n;
Data_Get_Struct(self, NODE, n);
if(n->nd_vid == 0)
{
return Qfalse;
}
else if(n->nd_vid == 1)
{
return Qtrue;
}
else
{
return ID2SYM(n->nd_vid);
}
}