pspp-cvs
[Top][All Lists]
Advanced

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

[Pspp-cvs] Changes to pspp/src/vars-atr.c


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/vars-atr.c
Date: Fri, 04 Nov 2005 22:45:41 -0500

Index: pspp/src/vars-atr.c
diff -u pspp/src/vars-atr.c:1.28 pspp/src/vars-atr.c:1.29
--- pspp/src/vars-atr.c:1.28    Wed Oct 26 00:50:44 2005
+++ pspp/src/vars-atr.c Sat Nov  5 03:45:28 2005
@@ -32,6 +32,21 @@
 #include "gettext.h"
 #define _(msgid) gettext (msgid)
 
+/* Returns an adjective describing the given variable TYPE,
+   suitable for use in phrases like "numeric variable". */
+const char *
+var_type_adj (enum var_type type) 
+{
+  return type == NUMERIC ? _("numeric") : _("string");
+}
+
+/* Returns a noun describing a value of the given variable TYPE,
+   suitable for use in phrases like "a number". */
+const char *
+var_type_noun (enum var_type type) 
+{
+  return type == NUMERIC ? _("number") : _("string");
+}
 
 /* Assign auxiliary data AUX to variable V, which must not
    already have auxiliary data.  Before V's auxiliary data is




reply via email to

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