X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdictionary.h;h=0ab259d35b539f1635345a307572817944986d50;hb=bd00412ff6cf29cf3b7744bf1045f53122eb46f7;hp=167487fbd10a34182ed5457c62a7770262c8e794;hpb=a9acce47d67e0ab35ce1690e4f1b1ac0121c2d78;p=pspp-builds.git diff --git a/src/data/dictionary.h b/src/data/dictionary.h index 167487fb..0ab259d3 100644 --- a/src/data/dictionary.h +++ b/src/data/dictionary.h @@ -75,11 +75,14 @@ void dict_reorder_var (struct dictionary *, struct variable *, void dict_reorder_vars (struct dictionary *, struct variable *const *, size_t count); -/* Changing variable names. */ +/* Variable names. */ void dict_rename_var (struct dictionary *, struct variable *, const char *); bool dict_rename_vars (struct dictionary *, struct variable **, char **new_names, size_t count, char **err_name); +bool dict_make_unique_var_name (const struct dictionary *, const char *hint, + unsigned long int *num_start, + char name[]); /* Weight variable. */ double dict_get_case_weight (const struct dictionary *,