mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
Move rot13 filter into a new filters.c source file.
Tidy up some other filter related code. # win32 -> someone please add user_filters.c and filters.c to the .dsp
This commit is contained in:
parent
30dafe2f42
commit
f58628ca4d
8 changed files with 154 additions and 83 deletions
|
@ -1031,7 +1031,7 @@ PHP_MINIT_FUNCTION(basic)
|
|||
PHP_MINIT(file) (INIT_FUNC_ARGS_PASSTHRU);
|
||||
PHP_MINIT(pack) (INIT_FUNC_ARGS_PASSTHRU);
|
||||
PHP_MINIT(browscap) (INIT_FUNC_ARGS_PASSTHRU);
|
||||
PHP_MINIT(string_filters) (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)
|
||||
|
@ -1104,7 +1104,7 @@ PHP_MSHUTDOWN_FUNCTION(basic)
|
|||
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(string_filters) (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);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue