/* * 含まれているレコードの数を返す。 * * === Return * Integer */ static VALUE records_nhits(VALUE obj) { sen_records *recs; Data_Get_Struct(obj, sen_records, recs); return INT2NUM(sen_records_nhits(recs)); }