X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fvariable.h;h=3a5015be5dedb6c2a92c98bfa75168e570c0c6fd;hb=83141cdd4ab281da80d5dfeda05073f0cb354eab;hp=2bc3442d251657af86f2d126f9165f07e97a8f5d;hpb=5fd22ca7771c8175ef05e91e1194c3c4096337f4;p=pspp diff --git a/src/data/variable.h b/src/data/variable.h index 2bc3442d25..3a5015be5d 100644 --- a/src/data/variable.h +++ b/src/data/variable.h @@ -40,7 +40,9 @@ enum var_type const char *var_type_adj (enum var_type); const char *var_type_noun (enum var_type); -/* Maximum variable name lengths. */ +/* Maximum lengths of short and long variable names. + Most operations support long variable names, + but some file formats are limited to short names. */ #define SHORT_NAME_LEN 8 /* Short name length. */ #define LONG_NAME_LEN 64 /* Long name length. */ @@ -62,7 +64,6 @@ struct variable /* Case information. */ int fv, nv; /* Index into `value's, number of values. */ - bool init; /* True if needs init and possibly reinit. */ bool reinit; /* True: reinitialize; false: leave. */ /* Data for use by containing dictionary. */ @@ -87,6 +88,7 @@ struct variable /* Variable names. */ bool var_is_valid_name (const char *, bool issue_error); +bool var_is_plausible_name (const char *name, bool issue_error); int compare_var_names (const void *, const void *, void *); unsigned hash_var_name (const void *, void *);