Fix memory leaks.
[pspp-builds.git] / src / sort.h
index e6c9fed9df4c2046d4a9a51c25fd38b66e72e0b1..63054413f539a0238f1efd7594faeb648a195869 100644 (file)
 #if !sort_h
 #define sort_h 1
 
-/* SORT CASES programmatic interface. */
-int sort_cases (int separate);
-void read_sort_output (int (*write_case)(void));
+#include <stddef.h>
 
-/* Variables to sort. */
-extern struct variable **v_sort;
-extern int nv_sort;
+struct casereader;
+struct dictionary;
+struct variable;
+
+struct sort_criteria *sort_parse_criteria (const struct dictionary *,
+                                           struct variable ***, int *);
+void sort_destroy_criteria (struct sort_criteria *);
+
+struct casefile *sort_execute (struct casereader *,
+                               const struct sort_criteria *);
+int sort_active_file_in_place (const struct sort_criteria *);
+struct casefile *sort_active_file_to_casefile (const struct sort_criteria *);
 
 #endif /* !sort_h */