1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* vi: set sw=4 ts=4: */ /* * yes.c - Repeatedly output a string. */ #include "toys.h" void yes_main(void) { for (;;) { int i; for (i=0; toys.optargs[i]; i++) { if (i) xputc(' '); xprintf("%s", toys.optargs[i]); } if (!i) xputc('y'); xputc('\n'); } }