Eliminated global variable current_dataset.
[pspp-builds.git] / src / language / utilities / echo.c
1 /* PSPP - computes sample statistics. -*-c-*-
2
3    Copyright (C) 2005 Free Software Foundation, Inc.
4    Written by John Darrington 2005
5
6    This program is free software; you can redistribute it and/or
7    modify it under the terms of the GNU General Public License as
8    published by the Free Software Foundation; either version 2 of the
9    License, or (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful, but
12    WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19    02110-1301, USA. */
20
21 #include <config.h>
22 #include <libpspp/message.h>
23 #include <libpspp/alloc.h>
24 #include <libpspp/str.h>
25 #include <language/lexer/lexer.h>
26 #include <language/command.h>
27 #include <output/table.h>
28 #include <output/manager.h>
29
30 /* Echos a string to the output stream */
31 int
32 cmd_echo (struct dataset *ds UNUSED)
33 {
34   struct tab_table *tab;
35
36   if (token != T_STRING) 
37     return CMD_FAILURE;
38   
39   tab = tab_create(1, 1, 0);
40
41   tab_dim (tab, tab_natural_dimensions);
42   tab_flags (tab, SOMF_NO_TITLE );
43
44   tab_text(tab, 0, 0, 0, ds_cstr (&tokstr));
45
46   tab_submit(tab);
47
48   return CMD_SUCCESS;
49 }