Changed a lot of non-const pointers to const.
[pspp-builds.git] / src / data / cat-routines.h
index 654ef44deaf777f3ed6fc1d9f4983f3e2426e98a..4fed886b56609a2bac4c96e19f2ba01924cd7900 100644 (file)
@@ -43,11 +43,11 @@ size_t cat_value_find (const struct variable *, const union value *);
 
 union value *cat_subscript_to_value (const size_t, struct variable *);
 
-void cat_stored_values_create (struct variable *);
+void cat_stored_values_create (const struct variable *);
 
-void cat_value_update (struct variable *, const union value *);
+void cat_value_update (const struct variable *, const union value *);
 
-void cat_create_value_matrix (struct variable *);
+void cat_create_value_matrix (const struct variable *);
 
 void cat_stored_values_destroy (struct cat_vals *);
 #endif