X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fvar-labs.c;h=65da79082bbeefea8e44e7291eb13ee601fcc0ce;hb=9f9ceb5c942ebb9f3fe5c568053bd75b5ea1ee0a;hp=87916977297c31d7d438b8719a411ec67e713a24;hpb=06f9ee45954e5e71fa7f6262dbf37defa1dbf996;p=pspp diff --git a/src/var-labs.c b/src/var-labs.c index 8791697729..65da79082b 100644 --- a/src/var-labs.c +++ b/src/var-labs.c @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #include #include @@ -27,6 +27,9 @@ #include "str.h" #include "var.h" +#include "gettext.h" +#define _(msgid) gettext (msgid) + #include "debug-print.h" int @@ -68,3 +71,14 @@ cmd_variable_labels (void) while (token != '.'); return CMD_SUCCESS; } + + + +const char * +var_to_string(const struct variable *var) +{ + if ( !var ) + return 0; + + return ( var->label ? var->label : var->name); +}