php-src/sapi/cli/php_getopt.h
Edin Kadribasic b1f3a91569 @- Added CLI (command line intrerface) sapi based on a cut-down version
@  of the CGI sapi which is more suited for writing shell scripts. Some of
@  the differences are: it prints no HTTP headers, displays plain text
@  error messages, etc. (Edin)
Added CLI (command line intrerface) sapi.
# Let's see if a build expert can make this compile along
# side some other sapi.
2002-01-06 14:08:14 +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);