Finish fixing MATCH FILES (PR 11677).
[pspp-builds.git] / src / case.h
index c7d7e9fbbc108fdade4f3a6af1f88554ddbfdb24..fc75c74ae4aef1d61ecc3a749b9b2e26e4f619eb 100644 (file)
@@ -21,6 +21,7 @@
 #define HEADER_CASE
 
 #include <stddef.h>
+#include "bool.h"
 #include "val.h"
 
 /* Opaque structure that represents a case.  Use accessor
@@ -76,6 +77,13 @@ CASE_INLINE const char *case_str (const struct ccase *, size_t idx);
 
 CASE_INLINE union value *case_data_rw (struct ccase *, size_t idx);
 
+struct variable;
+int case_compare (const struct ccase *, const struct ccase *,
+                  struct variable *const *, size_t var_cnt);
+int case_compare_2dict (const struct ccase *, const struct ccase *,
+                        struct variable *const *, struct variable *const *,
+                        size_t var_cnt);
+
 const union value *case_data_all (const struct ccase *);
 union value *case_data_all_rw (struct ccase *);