- Rename icu_loc* to i18n_loc*

- Added i18n_strtotitle (name is not sure yet) - work in progress.
This commit is contained in:
Derick Rethans 2005-09-14 14:56:01 +00:00
parent eb0fb96526
commit 6e3d5a9e22
3 changed files with 70 additions and 6 deletions

View file

@ -102,10 +102,11 @@ static PHP_FUNCTION(unicode_encode)
}
/* {{{ unicode_functions[] */
function_entry unicode_functions[] = {
PHP_FE(icu_loc_get_default, NULL)
PHP_FE(icu_loc_set_default, NULL)
PHP_FE(i18n_loc_get_default, NULL)
PHP_FE(i18n_loc_set_default, NULL)
PHP_FE(unicode_decode, NULL)
PHP_FE(unicode_encode, NULL)
PHP_FE(i18n_strtotitle, NULL)
{ NULL, NULL, NULL }
};
/* }}} */