X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcase.h;h=256d66019dd81f7ca25275291fcadc05b42b8964;hb=339f1956cc727eda788638644ef93ab7852b31cd;hp=45fdf52c9b993f7829885e01f4422fbe32b89f2a;hpb=ff7ae14592cbdbebc4e4322424db95663ea7e166;p=pspp diff --git a/src/data/case.h b/src/data/case.h index 45fdf52c9b..256d66019d 100644 --- a/src/data/case.h +++ b/src/data/case.h @@ -67,7 +67,7 @@ struct ccase *case_ref (const struct ccase *) WARN_UNUSED_RESULT; static inline void case_unref (struct ccase *); static inline bool case_is_shared (const struct ccase *); -static inline size_t case_get_value_cnt (const struct ccase *); +static inline size_t case_get_n_values (const struct ccase *); static inline const struct caseproto *case_get_proto (const struct ccase *); size_t case_get_cost (const struct caseproto *); @@ -158,7 +158,7 @@ case_is_shared (const struct ccase *c) /* Returns the number of union values in C. */ static inline size_t -case_get_value_cnt (const struct ccase *c) +case_get_n_values (const struct ccase *c) { return caseproto_get_n_widths (c->proto); }