getopt_long More...
#include "generic.h"
Data Structures | |
struct | option |
getopt_long option More... | |
Macros | |
#define | no_argument 0 |
#define | required_argument 1 |
#define | optional_argument 2 |
Functions | |
int | getopt_long (int argc, char *const argv[], const char *optstring, const struct option *longopts, int *longindex) |
Parse long options (BSD style) More... | |
Variables | |
int | opterr |
int | optind |
int | optopt |
char * | optarg |
int | optreset |
Detailed Description
This is a drop-in replacament of GNU getopt_long meant to be used on platforms that do not support such functionality.
Macro Definition Documentation
◆ no_argument
#define no_argument 0 |
option with no argument
◆ optional_argument
#define optional_argument 2 |
option with optional argument
◆ required_argument
#define required_argument 1 |
option with required argument
Function Documentation
◆ getopt_long()
int getopt_long | ( | int | argc, |
char *const | argv[], | ||
const char * | optstring, | ||
const struct option * | longopts, | ||
int * | longindex | ||
) |
- Parameters
-
argc number of arguments. argv pointer to the vector of arguments. optstring list of abbreviated options longopts list of long options. longindex index of current option in longopts.
- Returns
- the code of the next option.
This function extract long and short options from the argument list argv of argc entries.
A short options sequence is introduced by a single dash character -
. Each short option is described by a single character in the string optstring, possibly followed by a : character to denote a (mandatory) argument of the short option. A short option with an argument cannot appear in the middle of a short option sequence, but only at the end.
A long option is introduced by a double dash –
. Each long option is described by an instance of the option structure in the longopts table (the last entry must be filled with zeroes to denote the end).
Illegal options and missing arguments cause the function to skip the option and return '?'. If opterr is true
(default), the function prints an error message to stderr. Finally, if optstring has a leading :, then error messages are suppressed and a missing argument causes : to be returned.
- Remarks
- The function is currently not thread safe.
Variable Documentation
◆ optarg
char* optarg |
argument of the current option
◆ opterr
int opterr |
code of the last error occured while parsing an option
◆ optind
int optind |
index of the next option to process in argv
◆ optopt
int optopt |
current option
◆ optreset
int optreset |
reset flag