Some more property functions.

# I am pondering a different prefix..
This commit is contained in:
Andrei Zmievski 2006-05-03 22:03:10 +00:00
parent 0d6603d22a
commit bbde23e247
3 changed files with 160 additions and 3 deletions

View file

@ -53,6 +53,17 @@ PHP_FUNCTION(unicode_is_u_alphabetic);
PHP_FUNCTION(unicode_is_u_uppercase);
PHP_FUNCTION(unicode_is_u_lowercase);
/*
* Single character property functions.
*/
PHP_FUNCTION(unicode_get_numeric_value);
PHP_FUNCTION(unicode_get_combining_class);
PHP_FUNCTION(unicode_get_digit_value);
PHP_FUNCTION(unicode_get_mirror);
PHP_FUNCTION(unicode_get_direction);
PHP_FUNCTION(unicode_get_char_type);
PHP_FUNCTION(unicode_is_char_valid);
#endif /* PHP_PROPERTY_H */