12345678910111213141516171819202122232425262728293031 |
- #ifndef INTL_CONVERTCPP_H
- #define INTL_CONVERTCPP_H
- #ifndef __cplusplus
- #error Should be included only in C++ Files
- #endif
- #include <unicode/unistr.h>
- #include <zend_types.h>
- using icu::UnicodeString;
- int intl_stringFromChar(UnicodeString &ret, char *str, size_t str_len, UErrorCode *status);
- zend_string* intl_charFromString(const UnicodeString &from, UErrorCode *status);
- #endif
|