From df4547a3df3768f51e96226240c20df17102dff3 Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Tue, 23 May 2000 23:13:02 +0000 Subject: another bunch of proto fixes --- ext/standard/exec.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ext/standard/exec.c') diff --git a/ext/standard/exec.c b/ext/standard/exec.c index 86fd53ab5b..2b581d813a 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -324,7 +324,7 @@ char * php_escape_shell_cmd(char *str) { return cmd; } -/* {{{ proto escapeshellcmd(string command) +/* {{{ proto string escapeshellcmd(string command) Escape shell metacharacters */ PHP_FUNCTION(escapeshellcmd) { @@ -344,7 +344,8 @@ PHP_FUNCTION(escapeshellcmd) } /* }}} */ - +/* {{{ proto string shell_exec(strng cmd) + What excatly is this variant for ??? */ PHP_FUNCTION(shell_exec) { FILE *in; @@ -387,7 +388,7 @@ PHP_FUNCTION(shell_exec) return_value->value.str.len = total_readbytes; return_value->type = IS_STRING; } - +/* }}} */ /* * Local variables: -- cgit v1.2.1