Actually implement the new procedure code and adapt all of its clients
[pspp-builds.git] / src / language / stats / sort-criteria.h
index 1c44cc586eecfc0cc6df2f9c7e3572c41a1abdc0..b2bd9ab4859743fbe19ac093f583a5d5471212ce 100644 (file)
 #include <stdbool.h>
 #include <stddef.h>
 
-struct variable;
 struct dictionary;
-struct lexer ;
+struct lexer;
 
-struct sort_criteria *sort_parse_criteria (struct lexer *, const struct dictionary *,
-                                           const struct variable ***, size_t *,
-                                           bool *saw_direction,
-                                          const int *terminators
-                                          );
-
-void sort_destroy_criteria (struct sort_criteria *criteria) ;
+struct case_ordering *parse_case_ordering (struct lexer *,
+                                           const struct dictionary *,
+                                           bool *saw_direction);
 
 
 #endif /* SORT_PRS_H */