Import busybox 1.6.1
[git/pclouds.git] / box / coreutils / yes.c
blob5529eab143e4c4f655485e3e43ecaebbfd0b74de
1 /* vi: set sw=4 ts=4: */
2 /*
3 * yes implementation for busybox
5 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */
10 /* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
12 /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
14 * Size reductions and removed redundant applet name prefix from error messages.
17 #include "libbb.h"
19 /* This is a NOFORK applet. Be very careful! */
21 int yes_main(int argc, char **argv);
22 int yes_main(int argc, char **argv)
24 char **first_arg;
26 argv[0] = (char*)"y";
27 if (argc != 1) {
28 ++argv;
31 first_arg = argv;
32 do {
33 while (1) {
34 fputs(*argv, stdout);
35 if (!*++argv)
36 break;
37 putchar(' ');
39 argv = first_arg;
40 } while (putchar('\n') != EOF);
42 bb_perror_nomsg_and_die();