Change prefix to char_ and rename some functions.

This commit is contained in:
Andrei Zmievski 2006-05-04 00:01:34 +00:00
parent bbde23e247
commit 349d4a7de9
3 changed files with 107 additions and 104 deletions

View file

@ -249,40 +249,39 @@ zend_function_entry unicode_functions[] = {
PHP_FE(collator_set_default, NULL)
/* character property functions */
PHP_FE(unicode_is_lower, NULL)
PHP_FE(unicode_is_upper, NULL)
PHP_FE(unicode_is_digit, NULL)
PHP_FE(unicode_is_alpha, NULL)
PHP_FE(unicode_is_alnum, NULL)
PHP_FE(unicode_is_xdigit, NULL)
PHP_FE(unicode_is_punct, NULL)
PHP_FE(unicode_is_graph, NULL)
PHP_FE(unicode_is_blank, NULL)
PHP_FE(unicode_is_space, NULL)
PHP_FE(unicode_is_cntrl, NULL)
PHP_FE(unicode_is_print, NULL)
PHP_FE(char_is_lower, NULL)
PHP_FE(char_is_upper, NULL)
PHP_FE(char_is_digit, NULL)
PHP_FE(char_is_alpha, NULL)
PHP_FE(char_is_alnum, NULL)
PHP_FE(char_is_xdigit, NULL)
PHP_FE(char_is_punct, NULL)
PHP_FE(char_is_graph, NULL)
PHP_FE(char_is_blank, NULL)
PHP_FE(char_is_space, NULL)
PHP_FE(char_is_cntrl, NULL)
PHP_FE(char_is_print, NULL)
PHP_FE(unicode_is_title, NULL)
PHP_FE(unicode_is_defined, NULL)
PHP_FE(unicode_is_id_start, NULL)
PHP_FE(unicode_is_id_part, NULL)
PHP_FE(unicode_is_id_ignorable, NULL)
PHP_FE(unicode_is_iso_control, NULL)
PHP_FE(unicode_is_mirrored, NULL)
PHP_FE(unicode_is_base, NULL)
PHP_FE(unicode_is_whitespace, NULL)
PHP_FE(unicode_is_u_whitespace, NULL)
PHP_FE(unicode_is_u_alphabetic, NULL)
PHP_FE(unicode_is_u_uppercase, NULL)
PHP_FE(unicode_is_u_lowercase, NULL)
PHP_FE(char_is_defined, NULL)
PHP_FE(char_is_id_start, NULL)
PHP_FE(char_is_id_part, NULL)
PHP_FE(char_is_id_ignorable, NULL)
PHP_FE(char_is_iso_control, NULL)
PHP_FE(char_is_mirrored, NULL)
PHP_FE(char_is_base, NULL)
PHP_FE(char_is_whitespace, NULL)
PHP_FE(char_is_alphabetic, NULL)
PHP_FE(char_is_uppercase, NULL)
PHP_FE(char_is_lowercase, NULL)
PHP_FE(char_is_titlecase, NULL)
PHP_FE(unicode_get_numeric_value, NULL)
PHP_FE(unicode_get_combining_class, NULL)
PHP_FE(unicode_get_digit_value, NULL)
PHP_FE(unicode_get_mirror, NULL)
PHP_FE(unicode_get_direction, NULL)
PHP_FE(unicode_get_char_type, NULL)
PHP_FE(unicode_is_char_valid, NULL)
PHP_FE(char_get_numeric_value, NULL)
PHP_FE(char_get_combining_class, NULL)
PHP_FE(char_get_digit_value, NULL)
PHP_FE(char_get_mirrored, NULL)
PHP_FE(char_get_direction, NULL)
PHP_FE(char_get_type, NULL)
PHP_FE(char_is_valid, NULL)
{ NULL, NULL, NULL }
};