mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
proto fixes
This commit is contained in:
parent
886ad91adf
commit
a1cc1fddd8
@ -114,7 +114,7 @@ static int ctype(int (*iswhat)(int), zval **c)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool isalnum(mixed c)
|
||||
/* {{{ proto bool ctype_alnum(mixed c)
|
||||
Checks for alphanumeric character(s) */
|
||||
PHP_FUNCTION(ctype_alnum)
|
||||
{
|
||||
@ -131,7 +131,7 @@ PHP_FUNCTION(ctype_alnum)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool isalpha(mixed c)
|
||||
/* {{{ proto bool ctype_alpha(mixed c)
|
||||
Checks for alphabetic character(s) */
|
||||
PHP_FUNCTION(ctype_alpha)
|
||||
{
|
||||
@ -148,7 +148,7 @@ PHP_FUNCTION(ctype_alpha)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool iscntrl(mixed c)
|
||||
/* {{{ proto bool ctype_cntrl(mixed c)
|
||||
Checks for control character(s) */
|
||||
PHP_FUNCTION(ctype_cntrl)
|
||||
{
|
||||
@ -165,7 +165,7 @@ PHP_FUNCTION(ctype_cntrl)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool isdigit(mixed c)
|
||||
/* {{{ proto bool ctype_digit(mixed c)
|
||||
Checks for numeric character(s) */
|
||||
PHP_FUNCTION(ctype_digit)
|
||||
{
|
||||
@ -182,7 +182,7 @@ PHP_FUNCTION(ctype_digit)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool islower(mixed c)
|
||||
/* {{{ proto bool ctype_lower(mixed c)
|
||||
Checks for lowercase character(s) */
|
||||
PHP_FUNCTION(ctype_lower)
|
||||
{
|
||||
@ -199,7 +199,7 @@ PHP_FUNCTION(ctype_lower)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool isgraph(mixed c)
|
||||
/* {{{ proto bool ctype_graph(mixed c)
|
||||
Checks for any printable character(s) except space */
|
||||
PHP_FUNCTION(ctype_graph)
|
||||
{
|
||||
@ -216,7 +216,7 @@ PHP_FUNCTION(ctype_graph)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool isprint(mixed c)
|
||||
/* {{{ proto bool ctype_print(mixed c)
|
||||
Checks for printable character(s) */
|
||||
PHP_FUNCTION(ctype_print)
|
||||
{
|
||||
@ -233,7 +233,7 @@ PHP_FUNCTION(ctype_print)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool ispunct(mixed c)
|
||||
/* {{{ proto bool ctype_punct(mixed c)
|
||||
Checks for any printable character which is not whitespace or an alphanumeric character */
|
||||
PHP_FUNCTION(ctype_punct)
|
||||
{
|
||||
@ -250,7 +250,7 @@ PHP_FUNCTION(ctype_punct)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool isspace(mixed c)
|
||||
/* {{{ proto bool ctype_space(mixed c)
|
||||
Checks for whitespace character(s)*/
|
||||
PHP_FUNCTION(ctype_space)
|
||||
{
|
||||
@ -267,7 +267,7 @@ PHP_FUNCTION(ctype_space)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool isupper(mixed c)
|
||||
/* {{{ proto bool ctype_upper(mixed c)
|
||||
Checks for uppercase character(s) */
|
||||
PHP_FUNCTION(ctype_upper)
|
||||
{
|
||||
@ -284,7 +284,7 @@ PHP_FUNCTION(ctype_upper)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool isxdigit(mixed c)
|
||||
/* {{{ proto bool ctype_xdigit(mixed c)
|
||||
Checks for character(s) representing a hexadecimal digit */
|
||||
PHP_FUNCTION(ctype_xdigit)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user