sbase/echo.c

34 lines
473 B
C
Raw Normal View History

2011-05-23 01:36:34 +00:00
/* See LICENSE file for copyright and license details. */
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
2011-05-24 00:13:34 +00:00
#include <unistd.h>
2011-06-10 01:56:13 +00:00
#include "util.h"
2011-05-23 01:36:34 +00:00
2013-06-14 18:20:47 +00:00
static void
usage(void)
{
eprintf("usage: %s [-n] text\n", argv0);
}
2011-05-23 01:36:34 +00:00
int
main(int argc, char *argv[])
{
bool nflag = false;
2013-06-14 18:20:47 +00:00
ARGBEGIN {
case 'n':
nflag = true;
break;
default:
usage();
} ARGEND;
for(; argc > 0; argc--, argv++)
putword(argv[0]);
2011-05-23 01:36:34 +00:00
if(!nflag)
2011-05-26 03:01:20 +00:00
putchar('\n');
2013-06-14 18:20:47 +00:00
return EXIT_SUCCESS;
2011-05-23 01:36:34 +00:00
}