search for: var_name_len

Displaying 1 result from an estimated 1 matches for "var_name_len".

2008 Jul 02
2
spss long labels
...file_handle * h, union value * perm, struct dictionary * dict) { Index: src/var.h.in =================================================================== --- src/var.h.in (revision 5168) +++ src/var.h.in (working copy) @@ -41,6 +41,10 @@ #error MAX_SHORT_STRING must be less than 8. #endif +/* VAR_NAME_LEN: the length of a variable. + * SPSS supports names of 64 long + */ +#define VAR_NAME_LEN 64 /* Special values. */ #define SYSMIS (-DBL_MAX) #define LOWEST second_lowest_double_val() @@ -228,7 +232,7 @@ /* MODIFY VARS private data. */ struct modify_vars_proc { - char new_name[9]; /...