getopt.h 213 B

123456789101112
  1. /* Borrowed from Apache NT Port */
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. extern char *ap_optarg;
  6. extern int ap_optind;
  7. int ap_getopt(int argc, char* const *argv, const char *optstr);
  8. #ifdef __cplusplus
  9. }
  10. #endif