This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/ThirdParty/mingwBuild/x64/patches/parmetis-4.0.3/metis/GKlib/gk_getopt.h

65 lines
2.3 KiB
C
Raw Normal View History

2015-08-04 12:39:06 +00:00
/*!
\file gk_getopt.h
\brief This file contains GNU's externs/structs/prototypes
\date Started 3/27/2007
\author George
\version\verbatim $Id: gk_getopt.h 10711 2011-08-31 22:23:04Z karypis $ \endverbatim
*/
#ifndef _GK_GETOPT_H_
#define _GK_GETOPT_H_
/* Externals from getopt.c */
//extern char *gk_optarg;
//extern int gk_optind;
//extern int gk_opterr;
//extern int gk_optopt;
2015-08-04 12:39:06 +00:00
/*! \brief The structure that stores the information about the command-line options
2015-08-04 12:39:06 +00:00
2015-08-04 12:39:06 +00:00
This structure describes a single long option name for the sake of
gk_getopt_long(). The argument <tt>long_options</tt> must be an array
of these structures, one for each long option. Terminate the array with
2015-08-04 12:39:06 +00:00
an element containing all zeros.
*/
struct gk_option {
char *name; /*!< This field is the name of the option. */
2015-08-04 12:39:06 +00:00
int has_arg; /*!< This field says whether the option takes an argument.
It is an integer, and there are three legitimate values:
no_argument, required_argument and optional_argument.
2015-08-04 12:39:06 +00:00
*/
int *flag; /*!< See the discussion on ::gk_option#val */
2015-08-04 12:39:06 +00:00
int val; /*!< These fields control how to report or act on the option
when it occurs.
If flag is a null pointer, then the val is a value which
identifies this option. Often these values are chosen
2015-08-04 12:39:06 +00:00
to uniquely identify particular long options.
2015-08-04 12:39:06 +00:00
If flag is not a null pointer, it should be the address
of an int variable which is the flag for this option.
The value in val is the value to store in the flag to
2015-08-04 12:39:06 +00:00
indicate that the option was seen. */
};
/* Names for the values of the `has_arg' field of `struct gk_option'. */
#define no_argument 0
#define required_argument 1
#define optional_argument 2
/* Function prototypes */
//extern int gk_getopt(int __argc, char **__argv, char *__shortopts);
//extern int gk_getopt_long(int __argc, char **__argv, char *__shortopts,
// struct gk_option *__longopts, int *__longind);
//extern int gk_getopt_long_only (int __argc, char **__argv,
// char *__shortopts, struct gk_option *__longopts, int *__longind);
#endif