php-src/getopt.h

10 lines
200 B
C
Raw Normal View History

1999-04-07 21:05:13 +00:00
/* 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);