sbase/yes.c

32 lines
462 B
C
Raw Normal View History

2012-04-23 14:27:40 +00:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <stdlib.h>
2012-04-23 14:27:40 +00:00
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [string ...]\n", argv0);
}
2012-04-23 14:27:40 +00:00
int
main(int argc, char *argv[])
{
size_t i;
2012-04-23 14:27:40 +00:00
ARGBEGIN {
default:
2012-05-15 12:32:56 +00:00
usage();
2012-04-23 14:27:40 +00:00
} ARGEND;
2015-02-01 01:23:35 +00:00
if (argc == 0)
for (;;)
puts("y");
for (i = 0; ; i++, i %= argc) {
printf("%s", argv[i]);
putchar((i == argc - 1) ? '\n' : ' ');
}
2014-10-02 22:46:04 +00:00
return 1; /* should not reach */
2012-04-23 14:27:40 +00:00
}