1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/sapi/cgi/php_getopt.h
2000-02-10 16:44:59 +00:00

10 lines
228 B
C

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