1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/php_getopt.h
1999-05-29 13:53:59 +00:00

10 lines
214 B
C

/* Borrowed from Apache NT Port */
#include "php.h"
PHPAPI extern char *optarg;
PHPAPI extern int optind;
extern int opterr;
extern int optopt;
PHPAPI int getopt(int argc, char* const *argv, const char *optstr);