removed src/math/linreg/
[pspp-builds.git] / src / data / value.h
index cb66cb0836c7b00eeb7e992199650c192b15f780..4554a36617eb589153dc7244f19b3edf74c0bbd7 100644 (file)
@@ -19,6 +19,7 @@
 
 #include <libpspp/misc.h>
 #include <stdbool.h>
+#include <stddef.h>
 #include "minmax.h"
 
 /* "Short" strings, which are generally those no more than 8
@@ -39,7 +40,11 @@ union value *value_dup (const union value *, int width);
 union value *value_create (int width);
 
 int compare_values (const union value *, const union value *, int width);
-unsigned hash_value (const union value  *, int width);
+unsigned hash_value (const union value *, int width);
+
+int compare_ptr_values (const union value **, const union value **, int width);
+unsigned hash_ptr_value (const union value **, int width);
+
 
 static inline size_t value_cnt_from_width (int width);
 void value_copy (union value *, const union value *, int width);