summaryrefslogtreecommitdiff
path: root/Zend/zend_builtin_functions.c
diff options
context:
space:
mode:
authorEgon Schmid <eschmid@php.net>2000-02-27 18:41:19 +0000
committerEgon Schmid <eschmid@php.net>2000-02-27 18:41:19 +0000
commit68ab1d3d07f4b8af6dfd4d02fac6e048c160f5ed (patch)
tree86deaae1597e76ab38eb9e7d27777f90389fe6e9 /Zend/zend_builtin_functions.c
parent42d553c8ae241cdaa5335844626dda001a4acfae (diff)
downloadphp-git-68ab1d3d07f4b8af6dfd4d02fac6e048c160f5ed.tar.gz
Fixed some protos.
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r--Zend/zend_builtin_functions.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c
index c585e432f9..08e9198313 100644
--- a/Zend/zend_builtin_functions.c
+++ b/Zend/zend_builtin_functions.c
@@ -388,8 +388,7 @@ ZEND_FUNCTION(defined)
}
/* {{{ proto string get_class(object object)
- Retrieves the class name ...
-*/
+ Retrieves the class name */
ZEND_FUNCTION(get_class)
{
zval **arg;
@@ -405,8 +404,7 @@ ZEND_FUNCTION(get_class)
/* }}} */
/* {{{ proto string get_parent_class(object object)
- Retrieves the parent class name ...
-*/
+ Retrieves the parent class name */
ZEND_FUNCTION(get_parent_class)
{
zval **arg;
@@ -503,8 +501,7 @@ ZEND_FUNCTION(get_object_vars)
/* }}} */
/* {{{ proto bool method_exists(object object, string method)
- Checks if the class method exists ...
-*/
+ Checks if the class method exists */
ZEND_FUNCTION(method_exists)
{
zval **klass, **method_name;
@@ -530,8 +527,7 @@ ZEND_FUNCTION(method_exists)
/* }}} */
/* {{{ proto bool class_exists(string classname)
- Checks if the class exists ...
-*/
+ Checks if the class exists */
ZEND_FUNCTION(class_exists)
{
zval **class_name;