summaryrefslogtreecommitdiff
path: root/ext/standard/crypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/crypt.c')
-rw-r--r--ext/standard/crypt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/standard/crypt.c b/ext/standard/crypt.c
index 5e542049cd..fcf94d30ad 100644
--- a/ext/standard/crypt.c
+++ b/ext/standard/crypt.c
@@ -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