~ubuntu-branches/ubuntu/natty/eglibc/natty-security

« back to all changes in this revision

Viewing changes to argp/argp.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-08-03 10:17:12 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20090803101712-n74r7xge7cwubmka
Tags: upstream-2.10.1
ImportĀ upstreamĀ versionĀ 2.10.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Hierarchial argument parsing, layered over getopt.
2
 
   Copyright (C) 1995-1999, 2003, 2004, 2005, 2006, 2007
 
2
   Copyright (C) 1995-1999, 2003, 2004, 2005, 2006, 2007, 2009
3
3
   Free Software Foundation, Inc.
4
4
   This file is part of the GNU C Library.
5
5
   Written by Miles Bader <miles@gnu.ai.mit.edu>.
150
150
struct argp_child;              /* " */
151
151
 
152
152
/* The type of a pointer to an argp parsing function.  */
153
 
typedef error_t (*argp_parser_t) (int key, char *arg,
154
 
                                  struct argp_state *state);
 
153
typedef error_t (*argp_parser_t) (int __key, char *__arg,
 
154
                                  struct argp_state *__state);
155
155
 
156
156
/* What to return for unrecognized keys.  For special ARGP_KEY_ keys, such
157
157
   returns will simply be ignored.  For user keys, this error will be turned