NetBSD/share/misc/getopt

39 lines
509 B
Plaintext
Raw Normal View History

1994-03-26 06:24:50 +03:00
/*
* Main/getopt(3) fragment.
*
1994-03-29 06:05:36 +04:00
* from: @(#)getopt 5.3 (Berkeley) 3/28/94
* $Id: getopt,v 1.3 1994/03/29 02:05:36 cgd Exp $
1994-03-26 06:24:50 +03:00
*/
#include <sys/types.h>
#include <stdlib.h>
void usage __P((void));
int
main(argc, argv)
int argc;
char *argv[];
{
int ch;
while ((ch = getopt(argc, argv, "")) != EOF)
switch (ch) {
case '':
break;
case '?':
default:
usage();
}
argc -= optind;
argv += optind;
}
void
usage()
{
1994-03-29 06:05:36 +04:00
(void)fprintf(stderr, "usage: program [-abc] [-f file]\n");
1994-03-26 06:24:50 +03:00
exit(1);
}