Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / data / case.h
index 4d6e1d47da31e237da1c18c25005d82e5535f05b..fdfe62f461a652512f706f4c70145cbbf3c223ff 100644 (file)
 
 struct variable;
 
+/* A count of cases or the index of a case within a collection of
+   them. */
+#define CASENUMBER_MAX LONG_MAX
+typedef long int casenumber;
+
 /* Opaque structure that represents a case.  Use accessor
    functions instead of accessing any members directly.  Use
    case_move() or case_clone() instead of copying.  */
-struct ccase 
+struct ccase
   {
     struct case_data *case_data;        /* Actual data. */
   };
@@ -44,7 +49,7 @@ void case_destroy (struct ccase *);
 
 size_t case_get_value_cnt (const struct ccase *);
 
-void case_resize (struct ccase *, size_t new_value_cnt);
+void case_resize (struct ccase *, size_t new_cnt);
 void case_swap (struct ccase *, struct ccase *);
 
 bool case_try_create (struct ccase *, size_t value_cnt);
@@ -72,7 +77,7 @@ union value *case_data_rw_idx (struct ccase *, size_t idx);
 int case_compare (const struct ccase *, const struct ccase *,
                   const struct variable *const *, size_t var_cnt);
 int case_compare_2dict (const struct ccase *, const struct ccase *,
-                        const struct variable *const *, 
+                        const struct variable *const *,
                        const struct variable *const *,
                         size_t var_cnt);