MFH:- Added common getopt implementation to core.
 MFH:- Added long-option feature to getopt().
 MFH:- Made getopt() available on win32 systems.
 MFH:  Patch by: David Soria Parra <[EMAIL PROTECTED]>
 [DOC]: These changes will be available from 5.3+


uhm, this doesn't sound much thread safe to me:


PHPAPI int php_optidx = -1;

PHPAPI int php_getopt(int argc, char* const *argv, const opt_struct opts[], char **optarg, int *optind, int show_err, int arg_start) /* {{{ */
{
 static int optchr = 0;
 static int dash = 0; /* have already seen the - */

 php_optidx = -1;
(...)


Nuno
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to