X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fcase.h;h=c7d7e9fbbc108fdade4f3a6af1f88554ddbfdb24;hb=f1696fab032a5ae5c44e3a3dedba343fce9ffd5c;hp=6af3aaf8d56a3478fb5cbc132186b41cc413d1ac;hpb=8e4f17e8ae04936359e9e1837b5a42004609cb2b;p=pspp diff --git a/src/case.h b/src/case.h index 6af3aaf8d5..c7d7e9fbbc 100644 --- a/src/case.h +++ b/src/case.h @@ -56,6 +56,9 @@ CASE_INLINE void case_clone (struct ccase *, const struct ccase *); CASE_INLINE void case_move (struct ccase *, struct ccase *); CASE_INLINE void case_destroy (struct ccase *); +void case_resize (struct ccase *, size_t old_cnt, size_t new_cnt); +void case_swap (struct ccase *, struct ccase *); + int case_try_create (struct ccase *, size_t value_cnt); int case_try_clone (struct ccase *, const struct ccase *);