2012-04-23 10:27:40 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "util.h"
|
|
|
|
|
2012-05-15 08:32:56 -04:00
|
|
|
static void usage(void);
|
2012-04-23 10:27:40 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2012-05-14 16:28:41 -04:00
|
|
|
char *s = "y";
|
2012-04-23 10:27:40 -04:00
|
|
|
|
|
|
|
ARGBEGIN {
|
|
|
|
default:
|
2012-05-15 08:32:56 -04:00
|
|
|
usage();
|
2012-04-23 10:27:40 -04:00
|
|
|
} ARGEND;
|
|
|
|
|
2012-05-14 16:28:41 -04:00
|
|
|
switch(argc) {
|
|
|
|
case 1:
|
|
|
|
s = argv[0];
|
|
|
|
/* fallthrough */
|
|
|
|
case 0:
|
2012-04-23 10:27:40 -04:00
|
|
|
for(;;)
|
2012-05-14 16:28:41 -04:00
|
|
|
puts(s);
|
|
|
|
break;
|
|
|
|
default:
|
2012-05-15 08:32:56 -04:00
|
|
|
usage();
|
2012-04-23 10:27:40 -04:00
|
|
|
}
|
2012-05-14 16:28:41 -04:00
|
|
|
return EXIT_FAILURE; /* should not reach */
|
2012-04-23 10:27:40 -04:00
|
|
|
}
|
2012-05-15 08:32:56 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: %s [string]\n", argv0);
|
|
|
|
}
|