From: Hannes Magnusson Date: Mon, 2 Oct 2006 07:54:37 +0000 (+0000) Subject: Protos X-Git-Tag: RELEASE_1_0_0RC1~1486 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c669ecf1f7df540d1b022f00ec1582cbc270e50;p=php Protos --- diff --git a/ext/posix/posix.c b/ext/posix/posix.c index 1955c1d072..a63da8bd9a 100644 --- a/ext/posix/posix.c +++ b/ext/posix/posix.c @@ -1058,7 +1058,7 @@ PHP_FUNCTION(posix_strerror) #endif #ifdef HAVE_INITGROUPS -/* {{{ proto bool initgroups(string name, int base_group_id) +/* {{{ proto bool posix_initgroups(string name, int base_group_id) Calculate the group access list for the user specified in name. */ PHP_FUNCTION(posix_initgroups) { diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 0749d92e92..1e0317844e 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -6317,6 +6317,8 @@ PHP_FUNCTION(import_request_variables) /* }}} */ #ifdef HAVE_GETLOADAVG +/* {{{ proto array sys_getloadavg() +*/ PHP_FUNCTION(sys_getloadavg) { double load[3]; @@ -6330,6 +6332,7 @@ PHP_FUNCTION(sys_getloadavg) add_index_double(return_value, 2, load[2]); } } +/* }}} */ #endif diff --git a/ext/standard/html.c b/ext/standard/html.c index 44178a6d1f..f276fa9f10 100644 --- a/ext/standard/html.c +++ b/ext/standard/html.c @@ -1223,7 +1223,7 @@ PHP_FUNCTION(htmlspecialchars) } /* }}} */ -/* {{{ proto string htmlspecialchars(string string [, int quote_style]) +/* {{{ proto string htmlspecialchars_decode(string string [, int quote_style]) Convert special HTML entities back to characters */ PHP_FUNCTION(htmlspecialchars_decode) { diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c index 3b1bf65bc1..57fe0c8377 100644 --- a/ext/tidy/tidy.c +++ b/ext/tidy/tidy.c @@ -1387,7 +1387,7 @@ static PHP_FUNCTION(tidy_is_xhtml) } /* }}} */ -/* {{{ proto bool tidy_is_xhtml() U +/* {{{ proto bool tidy_is_xml() U Indicates if the document is a generic (non HTML/XHTML) XML document. */ static PHP_FUNCTION(tidy_is_xml) {