123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- #ifndef PHP_UNICODE_H
- #define PHP_UNICODE_H
- #if HAVE_MBSTRING
- #define UC_MN 0
- #define UC_MC 1
- #define UC_ME 2
- #define UC_ND 3
- #define UC_NL 4
- #define UC_NO 5
- #define UC_ZS 6
- #define UC_ZL 7
- #define UC_ZP 8
- #define UC_CC 9
- #define UC_CF 10
- #define UC_OS 11
- #define UC_CO 12
- #define UC_CN 13
- #define UC_LU 14
- #define UC_LL 15
- #define UC_LT 16
- #define UC_LM 17
- #define UC_LO 18
- #define UC_PC 19
- #define UC_PD 20
- #define UC_PS 21
- #define UC_PE 22
- #define UC_PO 23
- #define UC_SM 24
- #define UC_SC 25
- #define UC_SK 26
- #define UC_SO 27
- #define UC_L 28
- #define UC_R 29
- #define UC_EN 30
- #define UC_ES 31
- #define UC_ET 32
- #define UC_AN 33
- #define UC_CS 34
- #define UC_B 35
- #define UC_S 36
- #define UC_WS 37
- #define UC_ON 38
- #define UC_PI 39
- #define UC_PF 40
- #define UC_AL 41
- #define UC_CASED 42
- #define UC_CASE_IGNORABLE 43
- MBSTRING_API int php_unicode_is_prop(unsigned long code, ...);
- MBSTRING_API int php_unicode_is_prop1(unsigned long code, int prop);
- MBSTRING_API char *php_unicode_convert_case(
- int case_mode, const char *srcstr, size_t srclen, size_t *ret_len,
- const mbfl_encoding *src_encoding, int illegal_mode, int illegal_substchar);
- #define PHP_UNICODE_CASE_UPPER 0
- #define PHP_UNICODE_CASE_LOWER 1
- #define PHP_UNICODE_CASE_TITLE 2
- #define PHP_UNICODE_CASE_FOLD 3
- #define PHP_UNICODE_CASE_UPPER_SIMPLE 4
- #define PHP_UNICODE_CASE_LOWER_SIMPLE 5
- #define PHP_UNICODE_CASE_TITLE_SIMPLE 6
- #define PHP_UNICODE_CASE_FOLD_SIMPLE 7
- #define PHP_UNICODE_CASE_MODE_MAX 7
- static inline int php_unicode_is_lower(unsigned long code) {
- if (code < 0x80) {
- return code >= 0x61 && code <= 0x7A;
- } else {
- return php_unicode_is_prop1(code, UC_LL);
- }
- }
- static inline int php_unicode_is_upper(unsigned long code) {
- if (code < 0x80) {
- return code >= 0x41 && code <= 0x5A;
- } else {
- return php_unicode_is_prop1(code, UC_LU);
- }
- }
- #define php_unicode_is_alpha(cc) php_unicode_is_prop(cc, UC_LU, UC_LL, UC_LM, UC_LO, UC_LT, -1)
- #define php_unicode_is_digit(cc) php_unicode_is_prop1(cc, UC_ND)
- #define php_unicode_is_alnum(cc) php_unicode_is_prop(cc, UC_LU, UC_LL, UC_LM, UC_LO, UC_LT, UC_ND, -1)
- #define php_unicode_is_cntrl(cc) php_unicode_is_prop(cc, UC_CC, UC_CF, -1)
- #define php_unicode_is_blank(cc) php_unicode_is_prop1(cc, UC_ZS)
- #define php_unicode_is_punct(cc) php_unicode_is_prop(cc, UC_PD, UC_PS, UC_PE, UC_PO, UC_PI, UC_PF, -1)
- #define php_unicode_is_graph(cc) php_unicode_is_prop(cc, UC_MN, UC_MC, UC_ME, UC_ND, UC_NL, UC_NO, \
- UC_LU, UC_LL, UC_LT, UC_LM, UC_LO, UC_PC, UC_PD, \
- UC_PS, UC_PE, UC_PO, UC_SM, UC_SM, UC_SC, UC_SK, \
- UC_SO, UC_PI, UC_PF, -1)
- #define php_unicode_is_print(cc) php_unicode_is_prop(cc, UC_MN, UC_MC, UC_ME, UC_ND, UC_NL, UC_NO, \
- UC_LU, UC_LL, UC_LT, UC_LM, UC_LO, UC_PC, UC_PD, \
- UC_PS, UC_PE, UC_PO, UC_SM, UC_SM, UC_SC, UC_SK, \
- UC_SO, UC_ZS, UC_PI, UC_PF, -1)
- #define php_unicode_is_title(cc) php_unicode_is_prop1(cc, UC_LT)
- #define php_unicode_is_isocntrl(cc) php_unicode_is_prop1(cc, UC_CC)
- #define php_unicode_is_fmtcntrl(cc) php_unicode_is_prop1(cc, UC_CF)
- #define php_unicode_is_symbol(cc) php_unicode_is_prop(cc, UC_SM, UC_SC, UC_SO, UC_SK, -1)
- #define php_unicode_is_number(cc) php_unicode_is_prop(cc, UC_ND, UC_NO, UC_NL, -1)
- #define php_unicode_is_nonspacing(cc) php_unicode_is_prop1(cc, UC_MN)
- #define php_unicode_is_openpunct(cc) php_unicode_is_prop1(cc, UC_PS)
- #define php_unicode_is_closepunct(cc) php_unicode_is_prop1(cc, UC_PE)
- #define php_unicode_is_initialpunct(cc) php_unicode_is_prop1(cc, UC_PI)
- #define php_unicode_is_finalpunct(cc) php_unicode_is_prop1(cc, UC_PF)
- #define php_unicode_is_rtl(cc) php_unicode_is_prop1(cc, UC_R)
- #define php_unicode_is_ltr(cc) php_unicode_is_prop1(cc, UC_L)
- #define php_unicode_is_strong(cc) php_unicode_is_prop(cc, UC_L, UC_R, -1)
- #define php_unicode_is_weak(cc) php_unicode_is_prop(cc, UC_EN, UC_ES, UC_ET, UC_AN, UC_CS, -1)
- #define php_unicode_is_neutral(cc) php_unicode_is_prop(cc, UC_B, UC_S, UC_WS, UC_ON, -1)
- #define php_unicode_is_separator(cc) php_unicode_is_prop(cc, UC_B, UC_S, -1)
- #define php_unicode_is_mark(cc) php_unicode_is_prop(cc, UC_MN, UC_MC, UC_ME, -1)
- #define php_unicode_is_modif(cc) php_unicode_is_prop1(cc, UC_LM)
- #define php_unicode_is_letnum(cc) php_unicode_is_prop1(cc, UC_NL)
- #define php_unicode_is_connect(cc) php_unicode_is_prop1(cc, UC_PC)
- #define php_unicode_is_dash(cc) php_unicode_is_prop1(cc, UC_PD)
- #define php_unicode_is_math(cc) php_unicode_is_prop1(cc, UC_SM)
- #define php_unicode_is_currency(cc) php_unicode_is_prop1(cc, UC_SC)
- #define php_unicode_is_modifsymbol(cc) php_unicode_is_prop1(cc, UC_SK)
- #define php_unicode_is_nsmark(cc) php_unicode_is_prop1(cc, UC_MN)
- #define php_unicode_is_spmark(cc) php_unicode_is_prop1(cc, UC_MC)
- #define php_unicode_is_enclosing(cc) php_unicode_is_prop1(cc, UC_ME)
- #define php_unicode_is_private(cc) php_unicode_is_prop1(cc, UC_CO)
- #define php_unicode_is_surrogate(cc) php_unicode_is_prop1(cc, UC_OS)
- #define php_unicode_is_lsep(cc) php_unicode_is_prop1(cc, UC_ZL)
- #define php_unicode_is_psep(cc) php_unicode_is_prop1(cc, UC_ZP)
- #define php_unicode_is_identstart(cc) php_unicode_is_prop(cc, UC_LU, UC_LL, UC_LT, UC_LO, UC_NL, -1)
- #define php_unicode_is_identpart(cc) php_unicode_is_prop(cc, UC_LU, UC_LL, UC_LT, UC_LO, UC_NL, \
- UC_MN, UC_MC, UC_ND, UC_PC, UC_CF, -1)
- #define php_unicode_is_han(cc) (((cc) >= 0x4e00 && (cc) <= 0x9fff) ||\
- ((cc) >= 0xf900 && (cc) <= 0xfaff))
- #define php_unicode_is_hangul(cc) ((cc) >= 0xac00 && (cc) <= 0xd7ff)
- #define php_unicode_is_cased(cc) php_unicode_is_prop1(cc, UC_CASED)
- #define php_unicode_is_case_ignorable(cc) php_unicode_is_prop1(cc, UC_CASE_IGNORABLE)
- #endif
- #endif
|