X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fsubcase.h;h=6e59da1d3679ac5b4c89f8a1b6a6ca6bc910627c;hb=2fe0749f0892964767cefadb5fac1c9784e9df84;hp=050cf17dcd3477f4b236e7af58c1a1ca1595c036;hpb=5c3291dc396b795696e94f47780308fd7ace6fc4;p=pspp-builds.git diff --git a/src/data/subcase.h b/src/data/subcase.h index 050cf17d..6e59da1d 100644 --- a/src/data/subcase.h +++ b/src/data/subcase.h @@ -53,10 +53,16 @@ void subcase_init_vars (struct subcase *, const struct variable *const *, size_t n_vars); void subcase_init_var (struct subcase *, const struct variable *, enum subcase_direction); +void subcase_init (struct subcase *, int index, int width, + enum subcase_direction); + void subcase_clone (struct subcase *, const struct subcase *); void subcase_clear (struct subcase *); void subcase_destroy (struct subcase *); +bool subcase_add (struct subcase *sc, int index, int width, + enum subcase_direction direction); + bool subcase_add_var (struct subcase *, const struct variable *, enum subcase_direction);