]> granicus.if.org Git - php/commitdiff
added missing protos
authorHartmut Holzgraefe <hholzgra@php.net>
Wed, 11 Oct 2000 11:40:29 +0000 (11:40 +0000)
committerHartmut Holzgraefe <hholzgra@php.net>
Wed, 11 Oct 2000 11:40:29 +0000 (11:40 +0000)
ext/standard/info.c

index 9c84b82859a6831cf45cc2d855f84afc947f653f..7cca2c649a25c63903e5a0ac35d2f0be797549dc 100644 (file)
@@ -630,21 +630,30 @@ PHP_FUNCTION(phpcredits)
 /* }}} */
 
 
+/* {{{ proto string php_logo_guid(void)
+   Return the special ID used to request the PHP logo in phpinfo screens*/
 PHP_FUNCTION(php_logo_guid)
 {
        RETURN_STRINGL(PHP_LOGO_GUID, sizeof(PHP_LOGO_GUID)-1, 1);
 }
+/* }}} */
 
+/* {{{ proto string php_egg_logo_id(void)
+   Return the special ID used to request the PHP logo in phpinfo screens*/
 PHP_FUNCTION(php_egg_logo_guid)
 {
        RETURN_STRINGL(PHP_EGG_LOGO_GUID, sizeof(PHP_EGG_LOGO_GUID)-1, 1);
 }
+/* }}} */
 
 
+/* {{{ proto string zend_logo_id(void)
+   Return the special ID used to request the Zend logo in phpinfo screens*/
 PHP_FUNCTION(zend_logo_guid)
 {
        RETURN_STRINGL(ZEND_LOGO_GUID, sizeof(ZEND_LOGO_GUID)-1, 1);
 }
+/* }}} */
 
 /* {{{ proto string php_sapi_name(void)
    Return the current SAPI module name */