Replace more uses of 'cnt' by 'n'.
[pspp] / src / data / casewindow.h
index c7a863eaa89544f5ebf89f3e1b333530b8c75574..d467992463ada510da5f1a314e9fca6b81b12b1a 100644 (file)
@@ -37,11 +37,11 @@ struct casewindow *casewindow_create (const struct caseproto *,
 bool casewindow_destroy (struct casewindow *);
 
 void casewindow_push_head (struct casewindow *, struct ccase *);
-void casewindow_pop_tail (struct casewindow *, casenumber cnt);
+void casewindow_pop_tail (struct casewindow *, casenumber n);
 struct ccase *casewindow_get_case (const struct casewindow *,
                                    casenumber case_idx);
 const struct caseproto *casewindow_get_proto (const struct casewindow *);
-casenumber casewindow_get_case_cnt (const struct casewindow *);
+casenumber casewindow_get_n_cases (const struct casewindow *);
 
 bool casewindow_error (const struct casewindow *);
 void casewindow_force_error (struct casewindow *);