pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] Changes to pspp/src/dictionary.h


From: John Darrington
Subject: [Pspp-cvs] Changes to pspp/src/dictionary.h
Date: Wed, 13 Apr 2005 06:10:04 -0400

Index: pspp/src/dictionary.h
diff -u pspp/src/dictionary.h:1.2 pspp/src/dictionary.h:1.3
--- pspp/src/dictionary.h:1.2   Mon Mar 14 06:54:40 2005
+++ pspp/src/dictionary.h       Wed Apr 13 10:09:59 2005
@@ -39,10 +39,15 @@
 
 struct variable *dict_create_var (struct dictionary *, const char *,
                                   int width);
+
+struct variable *dict_create_var_from_short (struct dictionary *d, 
+                                            const char *shortname, 
+                                            int width);
+
 struct variable *dict_create_var_assert (struct dictionary *, const char *,
                                   int width);
 struct variable *dict_clone_var (struct dictionary *, const struct variable *,
-                                 const char *);
+                                 const char *shortname, const char *longname);
 void dict_rename_var (struct dictionary *, struct variable *, const char *);
 
 struct variable *dict_lookup_var (const struct dictionary *, const char *);
@@ -100,4 +105,12 @@
                                          const char *name);
 void dict_clear_vectors (struct dictionary *);
 
+void dict_get_varname_block(const struct dictionary *dict, char **buf, int 
*size);
+
+void dict_add_longvar_entry(struct dictionary *d, const char *name, 
+                           const char *longname);
+
+
+
+
 #endif /* dictionary.h */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]