mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
10 lines
200 B
C
10 lines
200 B
C
/* Borrowed from Apache NT Port */
|
|
#include "php.h"
|
|
|
|
extern char *optarg;
|
|
extern int optind;
|
|
extern int opterr;
|
|
extern int optopt;
|
|
|
|
extern int getopt(int argc, char* const *argv, const char *optstr);
|