diff options
author | Xinchen Hui <laruence@php.net> | 2014-05-10 00:21:49 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-05-10 00:21:49 +0800 |
commit | 88c550a7998d4af00767237b89f020ae3acac61b (patch) | |
tree | 5ff186b3072797bd03a1167c6d6e0c9b0d1e2140 /Zend/zend_exceptions.h | |
parent | e2890e3a0f3ea5a9ce4b9c8e9e78777f012a4b74 (diff) | |
download | php-git-88c550a7998d4af00767237b89f020ae3acac61b.tar.gz |
Added vstrpprintf strpprintf to avoid duplicate string
(the function name maybe improvement)
Diffstat (limited to 'Zend/zend_exceptions.h')
-rw-r--r-- | Zend/zend_exceptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_exceptions.h b/Zend/zend_exceptions.h index 24113d6f8d..a799786751 100644 --- a/Zend/zend_exceptions.h +++ b/Zend/zend_exceptions.h @@ -54,6 +54,7 @@ ZEND_API void zend_exception_error(zend_object *exception, int severity TSRMLS_D /* do not export, in php it's available thru spprintf directly */ int zend_spprintf(char **message, int max_len, const char *format, ...); +zend_string *zend_strpprintf(int max_len, const char *format, ...); END_EXTERN_C() |