source: buchla-68k/orig/GP/GETOPT.H

Last change on this file was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Imported original source code.

  • Property mode set to 100755
File size: 526 bytes
Line 
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
8extern int optind; /* Index into nargv */
9extern char *optarg; /* Pointer to option argument or NULL */
10
11extern int opterr; /* Error output flag */
12extern int optopt; /* Most recently parsed option letter */
13
14extern int getopt();
Note: See TracBrowser for help on using the repository browser.