diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-07-03 15:30:14 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-07-03 15:30:14 +0000 |
commit | dd710f4dc069748120cbfba7731a8ee8d4832f98 (patch) | |
tree | 37bef4c07cca7fd6cc90366ab48640e64dc5c37d | |
parent | fd9d9dea1ca783c0e2093da0dc42a876fe934f46 (diff) | |
download | php-git-dd710f4dc069748120cbfba7731a8ee8d4832f98.tar.gz |
Added missing protos
-rw-r--r-- | ext/mbstring/mbstring.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/mbstring/mbstring.h b/ext/mbstring/mbstring.h index 8e4bd2b911..197e160ecc 100644 --- a/ext/mbstring/mbstring.h +++ b/ext/mbstring/mbstring.h @@ -143,6 +143,9 @@ MBSTRING_API int php_mb_encoding_detector_ex(const char *arg_string, int arg_len MBSTRING_API int php_mb_encoding_converter_ex(char **str, int *len, const char *encoding_to, const char *encoding_from TSRMLS_DC); +MBSTRING_API int php_mb_gpc_encoding_converter(char **str, int *len, const char *encoding_to, const char *encoding_from TSRMLS_DC); + +MBSTRING_API int php_mb_gpc_encoding_detector(const char *arg_string, int arg_length, char *arg_list TSRMLS_DC); ZEND_BEGIN_MODULE_GLOBALS(mbstring) enum mbfl_no_language language; |