search for: parse_variables

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

2008 Jul 02
2
spss long labels
...[9]; /* Variable's new name. */ + char new_name[VAR_NAME_LEN +1]; /* Variable's new name. */ int drop_this_var; /* 0=keep this var, 1=drop this var. */ struct variable *next; /* Next in linked list. */ }; @@ -302,7 +306,7 @@ struct variable { /* Required by parse_variables() to be in this order. */ - char name[9]; /* As a string. */ + char name[VAR_NAME_LEN +1]; /* As a string. */ int index; /* Index into its dictionary's var[]. */ int type; /* NUMERIC or ALPHA. */ int foo; /* Used for temporary storage. */ @@ -373,9 +377,9 @@...