diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-11-25 17:20:20 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-11-25 17:20:20 +0000 |
commit | 76b218cb6ee479c16903cafcb9a83d969ea80d8c (patch) | |
tree | 70862b36e710f3fdf3260e56c7a59e28d1953823 /ext/mbstring/php_mbregex.c | |
parent | b3cfda6389bd4e7b06c65e77410528d9a2ae242f (diff) | |
download | php-git-76b218cb6ee479c16903cafcb9a83d969ea80d8c.tar.gz |
Renamed several internal functions for consistency
Diffstat (limited to 'ext/mbstring/php_mbregex.c')
-rw-r--r-- | ext/mbstring/php_mbregex.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/mbstring/php_mbregex.c b/ext/mbstring/php_mbregex.c index 1f760fd8fb..39fc048a46 100644 --- a/ext/mbstring/php_mbregex.c +++ b/ext/mbstring/php_mbregex.c @@ -91,8 +91,8 @@ static void php_mb_regex_free_cache(mb_regex_t *pre) } /* }}} */ -/* {{{ php_mb_regex_globals_ctor */ -void php_mb_regex_globals_ctor(zend_mbstring_globals *pglobals TSRMLS_DC) +/* {{{ _php_mb_regex_globals_ctor */ +void _php_mb_regex_globals_ctor(zend_mbstring_globals *pglobals TSRMLS_DC) { MBSTRG(default_mbctype) = MBCTYPE_EUC; MBSTRG(current_mbctype) = MBCTYPE_EUC; @@ -105,8 +105,8 @@ void php_mb_regex_globals_ctor(zend_mbstring_globals *pglobals TSRMLS_DC) } /* }}} */ -/* {{{ php_mb_regex_globals_dtor */ -void php_mb_regex_globals_dtor(zend_mbstring_globals *pglobals TSRMLS_DC) +/* {{{ _php_mb_regex_globals_dtor */ +void _php_mb_regex_globals_dtor(zend_mbstring_globals *pglobals TSRMLS_DC) { zend_hash_destroy(&MBSTRG(ht_rc)); } |