sbase/yes.c

37 lines
473 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>
#include "util.h"
2012-05-15 12:32:56 +00:00
static void usage(void);
2012-04-23 14:27:40 +00:00
int
main(int argc, char *argv[])
{
2012-05-14 20:28:41 +00:00
char *s = "y";
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;
2012-05-14 20:28:41 +00:00
switch(argc) {
case 1:
s = argv[0];
/* fallthrough */
case 0:
2012-04-23 14:27:40 +00:00
for(;;)
2012-05-14 20:28:41 +00:00
puts(s);
break;
default:
2012-05-15 12:32:56 +00:00
usage();
2012-04-23 14:27:40 +00:00
}
2012-05-14 20:28:41 +00:00
return EXIT_FAILURE; /* should not reach */
2012-04-23 14:27:40 +00:00
}
2012-05-15 12:32:56 +00:00
void
usage(void)
{
eprintf("usage: %s [string]\n", argv0);
}