/*
* call-seq:
* fi.store_offsets? -> bool
*
* Return true if offsets are stored with the term-vectors for this field.
*/
static VALUE
frt_fi_store_offsets(VALUE self)
{
FieldInfo *fi = (FieldInfo *)DATA_PTR(self);
return fi_store_offsets(fi) ? Qtrue : Qfalse;
}