treewide: Replace <name>_cnt by n_<name>s and <name>_cap by allocated_<name>.
[pspp] / src / language / expressions / public.h
index 105971306511e8eaef9a097f49e168364f008479..a4313a40c0aff4750353c2e5fceb5498e4b809bb 100644 (file)
@@ -45,9 +45,9 @@ void expr_evaluate_str (struct expression *, const struct ccase *,
                         int case_idx, char *dst, size_t dst_size);
 
 const struct operation *expr_get_function (size_t idx);
-size_t expr_get_function_cnt (void);
+size_t expr_get_n_functions (void);
 const char *expr_operation_get_name (const struct operation *);
 const char *expr_operation_get_prototype (const struct operation *);
-int expr_operation_get_arg_cnt (const struct operation *);
+int expr_operation_get_n_args (const struct operation *);
 
 #endif /* expr.h */