diff options
author | Antony Dovgal <tony2001@php.net> | 2006-12-25 19:08:33 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-12-25 19:08:33 +0000 |
commit | 549b48aee30ba8b38f8bdb17acb71ff986167080 (patch) | |
tree | c8e9eaece139d944dc08bfad965e024bba1a4055 | |
parent | 611c688d7cb5da0e7f345b4ad8b1742d131b6609 (diff) | |
download | php-git-549b48aee30ba8b38f8bdb17acb71ff986167080.tar.gz |
fix protos
-rw-r--r-- | ext/mhash/mhash.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/mhash/mhash.c b/ext/mhash/mhash.c index 82c8a1536c..b8aa637812 100644 --- a/ext/mhash/mhash.c +++ b/ext/mhash/mhash.c @@ -249,7 +249,7 @@ PHP_FUNCTION(mhash_get_hash_name) } /* }}} */ -/* {{{ int mhash_keygen_count() U +/* {{{ proto int mhash_keygen_count() U Get the number of available keygen algorithms */ PHP_FUNCTION(mhash_keygen_count) { @@ -261,7 +261,7 @@ PHP_FUNCTION(mhash_keygen_count) } /* }}} */ -/* {{{ string mhash_get_keygen_name(int keygen) +/* {{{ proto string mhash_get_keygen_name(int keygen) U Get the name of the keygen algorithm */ PHP_FUNCTION(mhash_get_keygen_name) { @@ -294,7 +294,7 @@ PHP_FUNCTION(mhash_keygen_uses_hash) } /* }}} */ -/* {{{ proto bool mhash_keygen_uses_count +/* {{{ proto bool mhash_keygen_uses_count(int keygen) U Whether the keygen algorithm uses the bytes_count parameter */ PHP_FUNCTION(mhash_keygen_uses_count) { @@ -308,7 +308,7 @@ PHP_FUNCTION(mhash_keygen_uses_count) } /* }}} */ -/* {{{ proto bool mhash_keygen uses_salt(int keygen) U +/* {{{ proto bool mhash_keygen_uses_salt(int keygen) U Whether the keygen algorithm requires a salt */ PHP_FUNCTION(mhash_keygen_uses_salt) { |