diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2000-05-23 23:13:02 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2000-05-23 23:13:02 +0000 |
commit | df4547a3df3768f51e96226240c20df17102dff3 (patch) | |
tree | 9084fad9d9d0133e07e5ee55fc023c700039f5df /ext/standard/exec.c | |
parent | 0fa7618f7c34c4db7cd8ff304d27962b54b59124 (diff) | |
download | php-git-df4547a3df3768f51e96226240c20df17102dff3.tar.gz |
another bunch of proto fixes
Diffstat (limited to 'ext/standard/exec.c')
-rw-r--r-- | ext/standard/exec.c | 7 |
1 files changed, 4 insertions, 3 deletions
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: |