Last change
on this file since eee74cd was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Imported original source code.
|
-
Property mode
set to
100755
|
File size:
526 bytes
|
Rev | Line | |
---|
[3ae31e9] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | getopt.c -- process the options on a Unix{tm} style command line
|
---|
| 4 | Version 1 -- 1987-10-16 -- D.N. Lynx Crowe
|
---|
| 5 | =============================================================================
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | extern int optind; /* Index into nargv */
|
---|
| 9 | extern char *optarg; /* Pointer to option argument or NULL */
|
---|
| 10 |
|
---|
| 11 | extern int opterr; /* Error output flag */
|
---|
| 12 | extern int optopt; /* Most recently parsed option letter */
|
---|
| 13 |
|
---|
| 14 | extern int getopt();
|
---|
Note:
See
TracBrowser
for help on using the repository browser.