2012-03-11 10:57:13 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2015-04-13 16:08:00 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2015.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This program is free software: you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License as published by the Free
|
|
|
|
Software Foundation, either version 3 of the License, or (at your option)
|
|
|
|
any later version.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
more details.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
this program. If not, see <http://www.gnu.org/licenses/>.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
echo.cpp
|
2013-11-02 19:32:25 -04:00
|
|
|
Write arguments to standard output.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2013-11-02 19:32:25 -04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <error.h>
|
2011-11-25 18:54:17 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2013-11-02 19:32:25 -04:00
|
|
|
for ( int i = 1; i < argc; i++ )
|
2011-11-25 18:54:17 -05:00
|
|
|
{
|
2015-04-13 16:08:00 -04:00
|
|
|
if ( i != 1 )
|
|
|
|
putchar(' ');
|
|
|
|
fputs(argv[i], stdout);
|
2011-11-25 18:54:17 -05:00
|
|
|
}
|
2015-04-13 16:08:00 -04:00
|
|
|
putchar('\n');
|
|
|
|
if ( ferror(stdout) || fflush(stdout) == EOF )
|
2011-11-25 18:54:17 -05:00
|
|
|
{
|
2013-11-02 19:32:25 -04:00
|
|
|
error(1, errno, "<stdout>");
|
2015-04-13 16:08:00 -04:00
|
|
|
return 1;
|
|
|
|
}
|
2011-11-25 18:54:17 -05:00
|
|
|
return 0;
|
|
|
|
}
|