/* * Return the Node's _nth_ member. The return type is an * Integer. */ static VALUE node_nth(VALUE self) { NODE * n; Data_Get_Struct(self, NODE, n); return LONG2NUM(n->nd_nth); }