From 8219ca044fcba3e7c7611c77c4b58cb88a9eadfe Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Thu, 24 Jan 2008 09:44:28 +0000 Subject: [PATCH] Flag unicode safe functions --- Zend/zend_builtin_functions.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 1f8d547e76..ad8148d2b6 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -2244,7 +2244,7 @@ ZEND_FUNCTION(get_extension_funcs) } /* }}} */ -/* {{{ proto int gc_collect_cycles(void) +/* {{{ proto int gc_collect_cycles(void) U Forces collection of any existing garbage cycles. Returns number of freed zvals */ ZEND_FUNCTION(gc_collect_cycles) @@ -2253,7 +2253,7 @@ ZEND_FUNCTION(gc_collect_cycles) } /* }}} */ -/* {{{ proto void gc_enabled(void) +/* {{{ proto void gc_enabled(void) U Returns status of the circular reference collector */ ZEND_FUNCTION(gc_enabled) { @@ -2261,7 +2261,7 @@ ZEND_FUNCTION(gc_enabled) } /* }}} */ -/* {{{ proto void gc_enable(void) +/* {{{ proto void gc_enable(void) U Activates the circular reference collector */ ZEND_FUNCTION(gc_enable) { @@ -2269,7 +2269,7 @@ ZEND_FUNCTION(gc_enable) } /* }}} */ -/* {{{ proto void gc_disable(void) +/* {{{ proto void gc_disable(void) U Deactivates the circular reference collector */ ZEND_FUNCTION(gc_disable) { -- 2.50.1