php-src/sapi/cgi/php_getopt.h
Sascha Schumann 328ca1b178 There is no need to declare ap_php_(opterr|optopt) with external linkage
as they are not used outside of getopt.c.

PR: #9364
2001-02-21 07:41:01 +00:00

8 lines
176 B
C

/* Borrowed from Apache NT Port */
#include "php.h"
extern char *ap_php_optarg;
extern int ap_php_optind;
int ap_php_getopt(int argc, char* const *argv, const char *optstr);