]> granicus.if.org Git - php/commitdiff
Tidy up
authorWez Furlong <wez@php.net>
Wed, 1 Jan 2003 11:21:40 +0000 (11:21 +0000)
committerWez Furlong <wez@php.net>
Wed, 1 Jan 2003 11:21:40 +0000 (11:21 +0000)
ext/standard/filters.c

index 8a701790ce05c36d498edb63b764718d7bdf032b..0378585cf3c3883a705536adf5cee303c8b3bc31 100644 (file)
@@ -97,9 +97,11 @@ static const struct {
        php_stream_filter_factory *factory;
 } standard_filters[] = {
        { &strfilter_rot13_ops, &strfilter_rot13_factory },
+       /* additional filters to go here */
        { NULL, NULL }
 };
 
+/* {{{ filter MINIT and MSHUTDOWN */
 PHP_MINIT_FUNCTION(standard_filters)
 {
        int i;
@@ -112,7 +114,6 @@ PHP_MINIT_FUNCTION(standard_filters)
                        return FAILURE;
                }
        }
-
        return SUCCESS;
 }
 
@@ -125,6 +126,7 @@ PHP_MSHUTDOWN_FUNCTION(standard_filters)
        }
        return SUCCESS;
 }
+/* }}} */
 
 /*
  * Local variables: