From: Andrei Zmievski Date: Wed, 3 May 2006 06:36:53 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: BEFORE_NEW_OUTPUT_API~327 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70acfbe14e419ead7491be43190fff40508a7004;p=php *** empty log message *** --- diff --git a/ext/unicode/php_property.h b/ext/unicode/php_property.h new file mode 100644 index 0000000000..3c3de57cdf --- /dev/null +++ b/ext/unicode/php_property.h @@ -0,0 +1,67 @@ +/* + +----------------------------------------------------------------------+ + | PHP Version 6 | + +----------------------------------------------------------------------+ + | This source file is subject to version 3.01 of the PHP license, | + | that is bundled with this package in the file LICENSE, and is | + | available through the world-wide-web at the following url: | + | http://www.php.net/license/3_01.txt | + | If you did not receive a copy of the PHP license and are unable to | + | obtain it through the world-wide-web, please send a note to | + | license@php.net so we can mail you a copy immediately. | + +----------------------------------------------------------------------+ + | Authors: Andrei Zmievski | + +----------------------------------------------------------------------+ +*/ + +/* $Id$ */ + +#ifndef PHP_PROPERTY_H +#define PHP_PROPERTY_H + +/* + * C/POSIX migration functions + */ +PHP_FUNCTION(unicode_is_lower); +PHP_FUNCTION(unicode_is_upper); +PHP_FUNCTION(unicode_is_digit); +PHP_FUNCTION(unicode_is_alpha); +PHP_FUNCTION(unicode_is_alnum); +PHP_FUNCTION(unicode_is_xdigit); +PHP_FUNCTION(unicode_is_punct); +PHP_FUNCTION(unicode_is_graph); +PHP_FUNCTION(unicode_is_blank); +PHP_FUNCTION(unicode_is_space); +PHP_FUNCTION(unicode_is_cntrl); +PHP_FUNCTION(unicode_is_print); + +/* + * Additional binary property functions + */ + +PHP_FUNCTION(unicode_is_title); +PHP_FUNCTION(unicode_is_defined); +PHP_FUNCTION(unicode_is_id_start); +PHP_FUNCTION(unicode_is_id_part); +PHP_FUNCTION(unicode_is_id_ignorable); +PHP_FUNCTION(unicode_is_iso_control); +PHP_FUNCTION(unicode_is_mirrored); +PHP_FUNCTION(unicode_is_base); +PHP_FUNCTION(unicode_is_whitespace); +PHP_FUNCTION(unicode_is_u_whitespace); +PHP_FUNCTION(unicode_is_u_alphabetic); +PHP_FUNCTION(unicode_is_u_uppercase); +PHP_FUNCTION(unicode_is_u_lowercase); + + +#endif /* PHP_PROPERTY_H */ + + +/* + * Local variables: + * tab-width: 4 + * c-basic-offset: 4 + * End: + * vim600: noet sw=4 ts=4 fdm=marker + * vim<600: noet sw=4 ts=4 + */