diff options
-rw-r--r-- | ext/com/COM.c | 5 | ||||
-rw-r--r-- | ext/ctype/ctype.c | 22 | ||||
-rw-r--r-- | ext/rpc/com/com_wrapper.c | 5 |
3 files changed, 17 insertions, 15 deletions
diff --git a/ext/com/COM.c b/ext/com/COM.c index 699133eafd..f82602fb12 100644 --- a/ext/com/COM.c +++ b/ext/com/COM.c @@ -437,7 +437,7 @@ PHP_INI_ENTRY("com.typelib_file", "", PHP_INI_SYSTEM, OnTypelibFileChange) PHP_INI_END() -/* {{{ proto int com_load(string module_name [, string remote_host [, int codepage[, string typelib]]]) +/* {{{ proto int com_load(string module_name [, string remote_host [, int codepage [, string typelib]]]) Loads a COM module */ PHP_FUNCTION(com_load) { @@ -1082,7 +1082,8 @@ PHP_FUNCTION(com_propput) /* }}} */ -/* {{{ proto bool com_load_typelib(string typelib_name[, int case_insensitiv]) */ +/* {{{ proto bool com_load_typelib(string typelib_name [, int case_insensitiv]) + Loads a Typelib */ PHP_FUNCTION(com_load_typelib) { pval *arg_typelib, *arg_cis; diff --git a/ext/ctype/ctype.c b/ext/ctype/ctype.c index 8e5326759e..6d44a18021 100644 --- a/ext/ctype/ctype.c +++ b/ext/ctype/ctype.c @@ -118,7 +118,7 @@ static int ctype(int (*iswhat)(int), zval **c) /* }}} */ /* {{{ proto bool isalnum(mixed c) - Check for alphanumeric character(s) */ + Checks for alphanumeric character(s) */ PHP_FUNCTION(ctype_alnum) { PHP_EXPERIMENTAL("4.0.4dev", NULL) @@ -136,7 +136,7 @@ PHP_FUNCTION(ctype_alnum) /* }}} */ /* {{{ proto bool isalpha(mixed c) - Check for alphabetic character(s) */ + Checks for alphabetic character(s) */ PHP_FUNCTION(ctype_alpha) { PHP_EXPERIMENTAL("4.0.4dev", NULL) @@ -154,7 +154,7 @@ PHP_FUNCTION(ctype_alpha) /* }}} */ /* {{{ proto bool iscntrl(mixed c) - Check for control character(s) */ + Checks for control character(s) */ PHP_FUNCTION(ctype_cntrl) { PHP_EXPERIMENTAL("4.0.4dev", NULL) @@ -172,7 +172,7 @@ PHP_FUNCTION(ctype_cntrl) /* }}} */ /* {{{ proto bool isdigit(mixed c) - Check for numeric character(s) */ + Checks for numeric character(s) */ PHP_FUNCTION(ctype_digit) { PHP_EXPERIMENTAL("4.0.4dev", NULL) @@ -190,7 +190,7 @@ PHP_FUNCTION(ctype_digit) /* }}} */ /* {{{ proto bool islower(mixed c) - Check for lowercase character(s) */ + Checks for lowercase character(s) */ PHP_FUNCTION(ctype_lower) { PHP_EXPERIMENTAL("4.0.4dev", NULL) @@ -208,7 +208,7 @@ PHP_FUNCTION(ctype_lower) /* }}} */ /* {{{ proto bool isgraph(mixed c) - Check for any printable character(s) except space */ + Checks for any printable character(s) except space */ PHP_FUNCTION(ctype_graph) { PHP_EXPERIMENTAL("4.0.4dev", NULL) @@ -226,7 +226,7 @@ PHP_FUNCTION(ctype_graph) /* }}} */ /* {{{ proto bool isprint(mixed c) - Check for printable character(s) */ + Checks for printable character(s) */ PHP_FUNCTION(ctype_print) { PHP_EXPERIMENTAL("4.0.4dev", NULL) @@ -244,7 +244,7 @@ PHP_FUNCTION(ctype_print) /* }}} */ /* {{{ proto bool ispunct(mixed c) - Check for any printable character which is not whitespace or an alphanumeric character */ + Checks for any printable character which is not whitespace or an alphanumeric character */ PHP_FUNCTION(ctype_punct) { PHP_EXPERIMENTAL("4.0.4dev", NULL) @@ -262,7 +262,7 @@ PHP_FUNCTION(ctype_punct) /* }}} */ /* {{{ proto bool isspace(mixed c) - Check for whitespace character(s)*/ + Checks for whitespace character(s)*/ PHP_FUNCTION(ctype_space) { PHP_EXPERIMENTAL("4.0.4dev", NULL) @@ -280,7 +280,7 @@ PHP_FUNCTION(ctype_space) /* }}} */ /* {{{ proto bool isupper(mixed c) - Check for uppercase character(s) */ + Checks for uppercase character(s) */ PHP_FUNCTION(ctype_upper) { PHP_EXPERIMENTAL("4.0.4dev", NULL) @@ -298,7 +298,7 @@ PHP_FUNCTION(ctype_upper) /* }}} */ /* {{{ proto bool isxdigit(mixed c) - Check for character(s) representing a hexadecimal digit */ + Checks for character(s) representing a hexadecimal digit */ PHP_FUNCTION(ctype_xdigit) { PHP_EXPERIMENTAL("4.0.4dev", NULL) diff --git a/ext/rpc/com/com_wrapper.c b/ext/rpc/com/com_wrapper.c index 699133eafd..f82602fb12 100644 --- a/ext/rpc/com/com_wrapper.c +++ b/ext/rpc/com/com_wrapper.c @@ -437,7 +437,7 @@ PHP_INI_ENTRY("com.typelib_file", "", PHP_INI_SYSTEM, OnTypelibFileChange) PHP_INI_END() -/* {{{ proto int com_load(string module_name [, string remote_host [, int codepage[, string typelib]]]) +/* {{{ proto int com_load(string module_name [, string remote_host [, int codepage [, string typelib]]]) Loads a COM module */ PHP_FUNCTION(com_load) { @@ -1082,7 +1082,8 @@ PHP_FUNCTION(com_propput) /* }}} */ -/* {{{ proto bool com_load_typelib(string typelib_name[, int case_insensitiv]) */ +/* {{{ proto bool com_load_typelib(string typelib_name [, int case_insensitiv]) + Loads a Typelib */ PHP_FUNCTION(com_load_typelib) { pval *arg_typelib, *arg_cis; |