getopt.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /* Declarations for pj_getopt.
  2. Copyright (C) 1989,90,91,92,93,94,96,97,98 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If not,
  14. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA. */
  16. #ifndef __PJ_GETOPT_H__
  17. #define __PJ_GETOPT_H__ 1
  18. /**
  19. * @file getopt.h
  20. * @brief Compile time settings
  21. */
  22. /**
  23. * @defgroup PJLIB_UTIL_GETOPT Getopt
  24. * @ingroup PJLIB_TEXT
  25. * @{
  26. */
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. /* For communication from `pj_getopt' to the caller.
  31. When `pj_getopt' finds an option that takes an argument,
  32. the argument value is returned here.
  33. Also, when `ordering' is RETURN_IN_ORDER,
  34. each non-option ARGV-element is returned here. */
  35. extern char *pj_optarg;
  36. /* Index in ARGV of the next element to be scanned.
  37. This is used for communication to and from the caller
  38. and for communication between successive calls to `pj_getopt'.
  39. On entry to `pj_getopt', zero means this is the first call; initialize.
  40. When `pj_getopt' returns -1, this is the index of the first of the
  41. non-option elements that the caller should itself scan.
  42. Otherwise, `pj_optind' communicates from one call to the next
  43. how much of ARGV has been scanned so far. */
  44. extern int pj_optind;
  45. /* Set to an option character which was unrecognized. */
  46. extern int pj_optopt;
  47. /* Describe the long-named options requested by the application.
  48. The LONG_OPTIONS argument to pj_getopt_long or pj_getopt_long_only is a vector
  49. of `struct pj_getopt_option' terminated by an element containing a name which is
  50. zero.
  51. The field `has_arg' is:
  52. no_argument (or 0) if the option does not take an argument,
  53. required_argument (or 1) if the option requires an argument,
  54. optional_argument (or 2) if the option takes an optional argument.
  55. If the field `flag' is not NULL, it points to a variable that is set
  56. to the value given in the field `val' when the option is found, but
  57. left unchanged if the option is not found.
  58. To have a long-named option do something other than set an `int' to
  59. a compiled-in constant, such as set a value from `pj_optarg', set the
  60. option's `flag' field to zero and its `val' field to a nonzero
  61. value (the equivalent single-letter option character, if there is
  62. one). For long options that have a zero `flag' field, `pj_getopt'
  63. returns the contents of the `val' field. */
  64. struct pj_getopt_option
  65. {
  66. const char *name;
  67. /* has_arg can't be an enum because some compilers complain about
  68. type mismatches in all the code that assumes it is an int. */
  69. int has_arg;
  70. int *flag;
  71. int val;
  72. };
  73. /* Names for the values of the `has_arg' field of `struct pj_getopt_option'. */
  74. # define no_argument 0
  75. # define required_argument 1
  76. # define optional_argument 2
  77. /* Get definitions and prototypes for functions to process the
  78. arguments in ARGV (ARGC of them, minus the program name) for
  79. options given in OPTS.
  80. Return the option character from OPTS just read. Return -1 when
  81. there are no more options. For unrecognized options, or options
  82. missing arguments, `pj_optopt' is set to the option letter, and '?' is
  83. returned.
  84. The OPTS string is a list of characters which are recognized option
  85. letters, optionally followed by colons, specifying that that letter
  86. takes an argument, to be placed in `pj_optarg'.
  87. If a letter in OPTS is followed by two colons, its argument is
  88. optional. This behavior is specific to the GNU `pj_getopt'.
  89. The argument `--' causes premature termination of argument
  90. scanning, explicitly telling `pj_getopt' that there are no more
  91. options.
  92. If OPTS begins with `--', then non-option arguments are treated as
  93. arguments to the option '\0'. This behavior is specific to the GNU
  94. `pj_getopt'. */
  95. int pj_getopt (int argc, char *const *argv, const char *shortopts);
  96. int pj_getopt_long (int argc, char *const *argv, const char *options,
  97. const struct pj_getopt_option *longopts, int *longind);
  98. int pj_getopt_long_only (int argc, char *const *argv,
  99. const char *shortopts,
  100. const struct pj_getopt_option *longopts, int *longind);
  101. #ifdef __cplusplus
  102. }
  103. #endif
  104. /**
  105. * @}
  106. */
  107. #endif /* pj_getopt.h */