Added casereader_clone function.
[pspp-builds.git] / src / data / transformations.h
index 196f65dce980e6f2ce2f8f38b7fb9042634e1b75..cc552a103ec44464b8d3d5ec21a162af97c79f9d 100644 (file)
@@ -23,6 +23,8 @@
 #include <stdbool.h>
 #include <stddef.h>
 
+typedef unsigned long casenum_t ;
+
 /* trns_proc_func return values. */
 enum trns_result 
   {
@@ -35,7 +37,7 @@ enum trns_result
 
 struct ccase;
 typedef void trns_finalize_func (void *);
-typedef int trns_proc_func (void *, struct ccase *, int);
+typedef int trns_proc_func (void *, struct ccase *, casenum_t);
 typedef bool trns_free_func (void *);
 \f
 /* Transformation chains. */