|
OpenCOBOL 1.1pre-rel
|

Go to the source code of this file.
Defines | |
| #define | const |
| #define | GETOPT_INTERFACE_VERSION 2 |
| #define | NULL 0 |
Functions | |
| int | getopt_long (int argc, char *const *argv, const char *options, const struct option *long_options, int *opt_index) |
| int | getopt_long_only (int argc, char *const *argv, const char *options, const struct option *long_options, int *opt_index) |
| int getopt_long | ( | int | argc, |
| char *const * | argv, | ||
| const char * | options, | ||
| const struct option * | long_options, | ||
| int * | opt_index | ||
| ) |
Definition at line 71 of file getopt1.c.
{
return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
}

| int getopt_long_only | ( | int | argc, |
| char *const * | argv, | ||
| const char * | options, | ||
| const struct option * | long_options, | ||
| int * | opt_index | ||
| ) |
Definition at line 87 of file getopt1.c.
{
return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
}

1.7.4