X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2FvfmP.h;h=86140401f93ce3619967a7f590ccb6bae2d9b5c5;hb=3bd4593ef9a57f23062c61ec465389f749ba3089;hp=eb52f0ed9697a726462cdd17c348863a5c839175;hpb=f9d47b5bba8416419cf3bcd3aa23c2d40a05fcac;p=pspp-builds.git diff --git a/src/vfmP.h b/src/vfmP.h index eb52f0ed..86140401 100644 --- a/src/vfmP.h +++ b/src/vfmP.h @@ -22,32 +22,4 @@ #include "var.h" -/* Describes a data stream, either a source or a sink. */ -struct stream_info - { - int case_size; /* Size of one case in bytes. */ - int ncases; /* Number of cases. */ - int nval; /* Number of `value' elements per case. */ - }; - -/* Information about the data source. */ -extern struct stream_info vfm_source_info; - -/* Information about the data sink. */ -extern struct stream_info vfm_sink_info; - -/* Nonzero if the case needs to have values deleted before being - stored, zero otherwise. */ -extern int compaction_necessary; - -/* Number of values after compaction, or the same as - vfm_sink_info.nval, if compaction is not necessary. */ -extern int compaction_nval; - -/* Temporary case buffer with enough room for `compaction_nval' - `value's. */ -extern struct ccase *compaction_case; - -void compact_case (struct ccase *dest, const struct ccase *src); - #endif /* !vfmP_h */