proto-takeover from php3

This commit is contained in:
Hartmut Holzgraefe 2000-05-17 19:40:10 +00:00
parent 1e632ffdee
commit e5a2f0f95c
3 changed files with 15 additions and 3 deletions

View file

@ -116,6 +116,8 @@ static void php_to64(char *s, long v, int n) {
}
}
/* {{{ proto string crypt(string str [, string salt])
Encrypt a string */
PHP_FUNCTION(crypt)
{
char salt[PHP_MAX_SALT_LEN+1];
@ -175,7 +177,7 @@ PHP_FUNCTION(crypt)
return_value->type = IS_STRING;
pval_copy_constructor(return_value);
}
/* }}} */
#endif