diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2000-10-11 11:40:29 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2000-10-11 11:40:29 +0000 |
commit | 332b7125de8b8dccbc01c2257760b4401b83ae1c (patch) | |
tree | d51dd5240ada74d5ce46e100efbac7cdfaea615b | |
parent | be19c812aba4ac0893d4b82d4a4fb5152c6ca30e (diff) | |
download | php-git-332b7125de8b8dccbc01c2257760b4401b83ae1c.tar.gz |
added missing protos
-rw-r--r-- | ext/standard/info.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c index 9c84b82859..7cca2c649a 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -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 */ |