summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-03-02 13:48:13 +0000
committerDerick Rethans <derick@php.net>2002-03-02 13:48:13 +0000
commit1f9464e3451a09e79043e1243fbbf498df83e724 (patch)
tree789052150a352d2ae16fdabf6494f7e90f12a10f /Zend
parent80ac68cc591c3c3ed69c8ed7d73fa01ee720dcf0 (diff)
downloadphp-git-1f9464e3451a09e79043e1243fbbf498df83e724.tar.gz
- MFZE1
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend_builtin_functions.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c
index 1cff9020fc..55e183a929 100644
--- a/Zend/zend_builtin_functions.c
+++ b/Zend/zend_builtin_functions.c
@@ -1082,7 +1082,8 @@ ZEND_FUNCTION(zend_test_func)
}
#endif
-
+/* {{{ proto string get_resource_type(resource res)
+ Get the resource type name for a given resource */
ZEND_FUNCTION(get_resource_type)
{
char *resource_type;
@@ -1104,6 +1105,7 @@ ZEND_FUNCTION(get_resource_type)
RETURN_STRING("Unknown", 1);
}
}
+/* }}} */
static int add_extension_info(zend_module_entry *module, void *arg TSRMLS_DC)