From: Edin Kadribasic Date: Sat, 24 Sep 2005 15:22:57 +0000 (+0000) Subject: MFB: Allow php extensions to use php_escape_shell_cmd() and php_escape_shell_arg... X-Git-Tag: RELEASE_0_9_0~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c752d6b2ad38ce52e5cdc0775ad98f2d14078f39;p=php MFB: Allow php extensions to use php_escape_shell_cmd() and php_escape_shell_arg(), needed for mbstring --- diff --git a/ext/standard/exec.h b/ext/standard/exec.h index 26794b7bb8..d8c4b198c5 100644 --- a/ext/standard/exec.h +++ b/ext/standard/exec.h @@ -34,8 +34,8 @@ PHP_FUNCTION(proc_terminate); PHP_FUNCTION(proc_nice); PHP_MINIT_FUNCTION(proc_open); -char *php_escape_shell_cmd(char *); -char *php_escape_shell_arg(char *); +PHPAPI char *php_escape_shell_cmd(char *); +PHPAPI char *php_escape_shell_arg(char *); int php_exec(int type, char *cmd, pval *array, pval *return_value TSRMLS_DC); #endif /* EXEC_H */