~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to getopt.h

  • Committer: Arnold D. Robbins
  • Date: 2010-07-16 09:27:41 UTC
  • Revision ID: git-v1:61bb57af53ebe916d2db6e3585d4fc7ac1d99b92
Tags: gawk-2.15.3
Move to gawk-2.15.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Declarations for getopt.
2
 
   Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
 
2
   Copyright (C) 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
3
3
 
4
4
   This program is free software; you can redistribute it and/or modify it
5
 
   under the terms of the GNU Library General Public License as published
6
 
   by the Free Software Foundation; either version 2, or (at your option)
7
 
   any later version.
 
5
   under the terms of the GNU General Public License as published by the
 
6
   Free Software Foundation; either version 2, or (at your option) any
 
7
   later version.
8
8
 
9
9
   This program is distributed in the hope that it will be useful,
10
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
11
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
12
   GNU General Public License for more details.
13
13
 
14
 
   You should have received a copy of the GNU Library General Public
15
 
   License along with this program; if not, write to the Free Software
16
 
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
14
   You should have received a copy of the GNU General Public License
 
15
   along with this program; if not, write to the Free Software
 
16
   Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
17
17
 
18
18
#ifndef _GETOPT_H
19
19
#define _GETOPT_H 1
49
49
 
50
50
extern int opterr;
51
51
 
 
52
/* Set to an option character which was unrecognized.  */
 
53
 
 
54
extern int optopt;
 
55
 
52
56
/* Describe the long-named options requested by the application.
53
57
   The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
54
58
   of `struct option' terminated by an element containing a name which is
86
90
 
87
91
/* Names for the values of the `has_arg' field of `struct option'.  */
88
92
 
89
 
enum _argtype
90
 
{
91
 
  no_argument,
92
 
  required_argument,
93
 
  optional_argument
94
 
};
 
93
#define no_argument             0
 
94
#define required_argument       1
 
95
#define optional_argument       2
95
96
 
96
97
#if __STDC__
97
98
#if defined(__GNU_LIBRARY__)