sbase/yes.c
FRIGN ad9a9dd3e1 Audit yes(1)
Oh well, time to simplify the loop.
Also, change the comment on unreachable code to something more clear.
2015-02-28 21:11:10 +01:00

29 lines
431 B
C

/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [string ...]\n", argv0);
}
int
main(int argc, char *argv[])
{
size_t i;
ARGBEGIN {
default:
usage();
} ARGEND;
for (i = 0; ; i++, i %= argc ? argc : 1) {
fputs(argc ? argv[i] : "y", stdout);
putchar((!argc || i == argc - 1) ? '\n' : ' ');
}
return 1; /* not reached */
}