NetBSD/share/misc/getopt

39 lines
508 B
Plaintext

/*
* Main/getopt(3) fragment.
*
* $NetBSD: getopt,v 1.5 1997/11/01 06:23:38 lukem Exp $
* @(#)getopt 5.3 (Berkeley) 3/28/94
*/
#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, "")) != -1)
switch (ch) {
case '':
break;
case '?':
default:
usage();
}
argc -= optind;
argv += optind;
}
void
usage()
{
(void)fprintf(stderr, "usage: program [-abc] [-f file]\n");
exit(1);
}