zeev            Tue Jan  7 06:37:09 2003 EDT

  Modified files:              
    /php4/ext/standard  basic_functions.c 
  Log:
  whitespace
  
  
Index: php4/ext/standard/basic_functions.c
diff -u php4/ext/standard/basic_functions.c:1.555 
php4/ext/standard/basic_functions.c:1.556
--- php4/ext/standard/basic_functions.c:1.555   Mon Jan  6 00:59:17 2003
+++ php4/ext/standard/basic_functions.c Tue Jan  7 06:37:09 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: basic_functions.c,v 1.555 2003/01/06 05:59:17 hyanantha Exp $ */
+/* $Id: basic_functions.c,v 1.556 2003/01/07 11:37:09 zeev Exp $ */
 
 #include "php.h"
 #include "php_streams.h"
@@ -1029,38 +1029,38 @@
        register_html_constants(INIT_FUNC_ARGS_PASSTHRU);
        register_string_constants(INIT_FUNC_ARGS_PASSTHRU);
 
-       PHP_MINIT(regex) (INIT_FUNC_ARGS_PASSTHRU);
-       PHP_MINIT(file) (INIT_FUNC_ARGS_PASSTHRU);
-       PHP_MINIT(pack) (INIT_FUNC_ARGS_PASSTHRU);
-       PHP_MINIT(browscap) (INIT_FUNC_ARGS_PASSTHRU);
-       PHP_MINIT(standard_filters) (INIT_FUNC_ARGS_PASSTHRU);
-       PHP_MINIT(user_filters) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(regex)(INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(file)(INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(pack)(INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(browscap)(INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(standard_filters)(INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(user_filters)(INIT_FUNC_ARGS_PASSTHRU);
 
 #if defined(HAVE_LOCALECONV) && defined(ZTS)
-       PHP_MINIT(localeconv) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(localeconv)(INIT_FUNC_ARGS_PASSTHRU);
 #endif
 
 #if defined(HAVE_NL_LANGINFO)
-       PHP_MINIT(nl_langinfo) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(nl_langinfo)(INIT_FUNC_ARGS_PASSTHRU);
 #endif
 
 #if HAVE_CRYPT
-       PHP_MINIT(crypt) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(crypt)(INIT_FUNC_ARGS_PASSTHRU);
 #endif
 
-       PHP_MINIT(lcg) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(lcg)(INIT_FUNC_ARGS_PASSTHRU);
 
-       PHP_MINIT(dir) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(dir)(INIT_FUNC_ARGS_PASSTHRU);
 #ifdef HAVE_SYSLOG_H
-       PHP_MINIT(syslog) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(syslog)(INIT_FUNC_ARGS_PASSTHRU);
 #endif
-       PHP_MINIT(array) (INIT_FUNC_ARGS_PASSTHRU);
-       PHP_MINIT(assert) (INIT_FUNC_ARGS_PASSTHRU);
-       PHP_MINIT(url_scanner_ex) (INIT_FUNC_ARGS_PASSTHRU);
-       PHP_MINIT(proc_open) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(array)(INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(assert)(INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(url_scanner_ex)(INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(proc_open)(INIT_FUNC_ARGS_PASSTHRU);
 
-       PHP_MINIT(user_streams) (INIT_FUNC_ARGS_PASSTHRU);
-       PHP_MINIT(imagetypes) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(user_streams)(INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(imagetypes)(INIT_FUNC_ARGS_PASSTHRU);
 
        php_register_url_stream_wrapper("php", &php_stream_php_wrapper TSRMLS_CC);
 #ifndef PHP_CURL_URL_WRAPPERS
@@ -1074,7 +1074,7 @@
 
 #if HAVE_RES_SEARCH && !(defined(__BEOS__)||defined(PHP_WIN32) || defined(NETWARE))
 # if HAVE_DNS_FUNCS
-       PHP_MINIT(dns) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_MINIT(dns)(INIT_FUNC_ARGS_PASSTHRU);
 # endif
 #endif
 
@@ -1102,15 +1102,15 @@
 
        UNREGISTER_INI_ENTRIES();
 
-       PHP_MSHUTDOWN(regex) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
-       PHP_MSHUTDOWN(browscap) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
-       PHP_MSHUTDOWN(array) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
-       PHP_MSHUTDOWN(assert) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
-       PHP_MSHUTDOWN(url_scanner_ex) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
-       PHP_MSHUTDOWN(file) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
-       PHP_MSHUTDOWN(standard_filters) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_MSHUTDOWN(regex)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_MSHUTDOWN(browscap)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_MSHUTDOWN(array)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_MSHUTDOWN(assert)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_MSHUTDOWN(url_scanner_ex)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_MSHUTDOWN(file)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_MSHUTDOWN(standard_filters)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
 #if defined(HAVE_LOCALECONV) && defined(ZTS)
-       PHP_MSHUTDOWN(localeconv) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_MSHUTDOWN(localeconv)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
 #endif
 
        return SUCCESS;
@@ -1144,17 +1144,17 @@
        BG(user_shutdown_function_names) = NULL;
 
 #if HAVE_CRYPT
-       PHP_RINIT(crypt) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_RINIT(crypt)(INIT_FUNC_ARGS_PASSTHRU);
 #endif
 
-       PHP_RINIT(lcg) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_RINIT(lcg)(INIT_FUNC_ARGS_PASSTHRU);
 
-       PHP_RINIT(filestat) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_RINIT(filestat)(INIT_FUNC_ARGS_PASSTHRU);
 #ifdef HAVE_SYSLOG_H
-       PHP_RINIT(syslog) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_RINIT(syslog)(INIT_FUNC_ARGS_PASSTHRU);
 #endif
-       PHP_RINIT(dir) (INIT_FUNC_ARGS_PASSTHRU);
-       PHP_RINIT(url_scanner_ex) (INIT_FUNC_ARGS_PASSTHRU);
+       PHP_RINIT(dir)(INIT_FUNC_ARGS_PASSTHRU);
+       PHP_RINIT(url_scanner_ex)(INIT_FUNC_ARGS_PASSTHRU);
 
        /* Reset magic_quotes_runtime */
        PG(magic_quotes_runtime) = INI_BOOL("magic_quotes_runtime");
@@ -1182,14 +1182,14 @@
        }
        STR_FREE(BG(locale_string));
 
-       PHP_RSHUTDOWN(fsock) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
-       PHP_RSHUTDOWN(filestat) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_RSHUTDOWN(fsock)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_RSHUTDOWN(filestat)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
 #ifdef HAVE_SYSLOG_H
-       PHP_RSHUTDOWN(syslog) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_RSHUTDOWN(syslog)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
 #endif
-       PHP_RSHUTDOWN(assert) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
-       PHP_RSHUTDOWN(url_scanner_ex) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
-       PHP_RSHUTDOWN(streams) (SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_RSHUTDOWN(assert)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_RSHUTDOWN(url_scanner_ex)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
+       PHP_RSHUTDOWN(streams)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
 
        if (BG(user_tick_functions)) {
                zend_llist_destroy(BG(user_tick_functions));
@@ -1226,11 +1226,11 @@
 PHP_MINFO_FUNCTION(basic)
 {
        php_info_print_table_start();
-       PHP_MINFO(regex) (ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
-       PHP_MINFO(dl) (ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
-       PHP_MINFO(mail) (ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
+       PHP_MINFO(regex)(ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
+       PHP_MINFO(dl)(ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
+       PHP_MINFO(mail)(ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
        php_info_print_table_end();
-       PHP_MINFO(assert) (ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
+       PHP_MINFO(assert)(ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
 }
 
 



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

Reply via email to