diff options
author | Andrei Zmievski <andrei@php.net> | 2000-06-01 16:34:50 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2000-06-01 16:34:50 +0000 |
commit | 4ef2af7c72e3d727a6ac3578127d7e22cdd580dc (patch) | |
tree | 8c278bc7f9ad77a3f6ea2039636c50bdb0978d1c /ext/pcre | |
parent | 1db5c7d1e27a77c0de1a37cfb670797515d3ff51 (diff) | |
download | php-git-4ef2af7c72e3d727a6ac3578127d7e22cdd580dc.tar.gz |
Update header file.
Diffstat (limited to 'ext/pcre')
-rw-r--r-- | ext/pcre/php_pcre.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/pcre/php_pcre.h b/ext/pcre/php_pcre.h index fb065fad66..b2715e9223 100644 --- a/ext/pcre/php_pcre.h +++ b/ext/pcre/php_pcre.h @@ -40,7 +40,10 @@ PHP_FUNCTION(preg_split); PHP_FUNCTION(preg_quote); PHP_FUNCTION(preg_grep); -char *_php_pcre_replace(char *regex, char *subject, char *replace); +char *php_pcre_replace(char *regex, int regex_len, + char *subject, int subject_len, + char *replace, int replace_len, + int *result_len); extern zend_module_entry pcre_module_entry; #define pcre_module_ptr &pcre_module_entry |