123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- #ifndef PHP_UNICODE_H
- #define PHP_UNICODE_H
- #if HAVE_MBSTRING
- #define UC_MN 0x00000001
- #define UC_MC 0x00000002
- #define UC_ME 0x00000004
- #define UC_ND 0x00000008
- #define UC_NL 0x00000010
- #define UC_NO 0x00000020
- #define UC_ZS 0x00000040
- #define UC_ZL 0x00000080
- #define UC_ZP 0x00000100
- #define UC_CC 0x00000200
- #define UC_CF 0x00000400
- #define UC_OS 0x00000800
- #define UC_CO 0x00001000
- #define UC_CN 0x00002000
- #define UC_LU 0x00004000
- #define UC_LL 0x00008000
- #define UC_LT 0x00010000
- #define UC_LM 0x00020000
- #define UC_LO 0x00040000
- #define UC_PC 0x00080000
- #define UC_PD 0x00100000
- #define UC_PS 0x00200000
- #define UC_PE 0x00400000
- #define UC_PO 0x00800000
- #define UC_SM 0x01000000
- #define UC_SC 0x02000000
- #define UC_SK 0x04000000
- #define UC_SO 0x08000000
- #define UC_L 0x10000000
- #define UC_R 0x20000000
- #define UC_EN 0x40000000
- #define UC_ES 0x80000000
- #define UC_ET 0x00000001
- #define UC_AN 0x00000002
- #define UC_CS 0x00000004
- #define UC_B 0x00000008
- #define UC_S 0x00000010
- #define UC_WS 0x00000020
- #define UC_ON 0x00000040
- #define UC_CM 0x00000080
- #define UC_NB 0x00000100
- #define UC_SY 0x00000200
- #define UC_HD 0x00000400
- #define UC_QM 0x00000800
- #define UC_MR 0x00001000
- #define UC_SS 0x00002000
- #define UC_CP 0x00004000
- #define UC_PI 0x00008000
- #define UC_PF 0x00010000
- MBSTRING_API int php_unicode_is_prop(unsigned long code, unsigned long mask1,
- unsigned long mask2);
- MBSTRING_API char *php_unicode_convert_case(int case_mode, const char *srcstr, size_t srclen, size_t *retlen,
- const char *src_encoding TSRMLS_DC);
- #define PHP_UNICODE_CASE_UPPER 0
- #define PHP_UNICODE_CASE_LOWER 1
- #define PHP_UNICODE_CASE_TITLE 2
- #define php_unicode_is_alpha(cc) php_unicode_is_prop(cc, UC_LU|UC_LL|UC_LM|UC_LO|UC_LT, 0)
- #define php_unicode_is_digit(cc) php_unicode_is_prop(cc, UC_ND, 0)
- #define php_unicode_is_alnum(cc) php_unicode_is_prop(cc, UC_LU|UC_LL|UC_LM|UC_LO|UC_LT|UC_ND, 0)
- #define php_unicode_is_cntrl(cc) php_unicode_is_prop(cc, UC_CC|UC_CF, 0)
- #define php_unicode_is_space(cc) php_unicode_is_prop(cc, UC_ZS|UC_SS, 0)
- #define php_unicode_is_blank(cc) php_unicode_is_prop(cc, UC_ZS, 0)
- #define php_unicode_is_punct(cc) php_unicode_is_prop(cc, UC_PD|UC_PS|UC_PE|UC_PO, UC_PI|UC_PF)
- #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)
- #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)
- #define php_unicode_is_upper(cc) php_unicode_is_prop(cc, UC_LU, 0)
- #define php_unicode_is_lower(cc) php_unicode_is_prop(cc, UC_LL, 0)
- #define php_unicode_is_title(cc) php_unicode_is_prop(cc, UC_LT, 0)
- #define php_unicode_is_xdigit(cc) php_unicode_is_prop(cc, 0, UC_HD)
- #define php_unicode_is_isocntrl(cc) php_unicode_is_prop(cc, UC_CC, 0)
- #define php_unicode_is_fmtcntrl(cc) php_unicode_is_prop(cc, UC_CF, 0)
- #define php_unicode_is_symbol(cc) php_unicode_is_prop(cc, UC_SM|UC_SC|UC_SO|UC_SK, 0)
- #define php_unicode_is_number(cc) php_unicode_is_prop(cc, UC_ND|UC_NO|UC_NL, 0)
- #define php_unicode_is_nonspacing(cc) php_unicode_is_prop(cc, UC_MN, 0)
- #define php_unicode_is_openpunct(cc) php_unicode_is_prop(cc, UC_PS, 0)
- #define php_unicode_is_closepunct(cc) php_unicode_is_prop(cc, UC_PE, 0)
- #define php_unicode_is_initialpunct(cc) php_unicode_is_prop(cc, 0, UC_PI)
- #define php_unicode_is_finalpunct(cc) php_unicode_is_prop(cc, 0, UC_PF)
- #define php_unicode_is_composite(cc) php_unicode_is_prop(cc, 0, UC_CM)
- #define php_unicode_is_hex(cc) php_unicode_is_prop(cc, 0, UC_HD)
- #define php_unicode_is_quote(cc) php_unicode_is_prop(cc, 0, UC_QM)
- #define php_unicode_is_symmetric(cc) php_unicode_is_prop(cc, 0, UC_SY)
- #define php_unicode_is_mirroring(cc) php_unicode_is_prop(cc, 0, UC_MR)
- #define php_unicode_is_nonbreaking(cc) php_unicode_is_prop(cc, 0, UC_NB)
- #define php_unicode_is_rtl(cc) php_unicode_is_prop(cc, UC_R, 0)
- #define php_unicode_is_ltr(cc) php_unicode_is_prop(cc, UC_L, 0)
- #define php_unicode_is_strong(cc) php_unicode_is_prop(cc, UC_L|UC_R, 0)
- #define php_unicode_is_weak(cc) php_unicode_is_prop(cc, UC_EN|UC_ES, UC_ET|UC_AN|UC_CS)
- #define php_unicode_is_neutral(cc) php_unicode_is_prop(cc, 0, UC_B|UC_S|UC_WS|UC_ON)
- #define php_unicode_is_separator(cc) php_unicode_is_prop(cc, 0, UC_B|UC_S)
- #define php_unicode_is_mark(cc) php_unicode_is_prop(cc, UC_MN|UC_MC|UC_ME, 0)
- #define php_unicode_is_modif(cc) php_unicode_is_prop(cc, UC_LM, 0)
- #define php_unicode_is_letnum(cc) php_unicode_is_prop(cc, UC_NL, 0)
- #define php_unicode_is_connect(cc) php_unicode_is_prop(cc, UC_PC, 0)
- #define php_unicode_is_dash(cc) php_unicode_is_prop(cc, UC_PD, 0)
- #define php_unicode_is_math(cc) php_unicode_is_prop(cc, UC_SM, 0)
- #define php_unicode_is_currency(cc) php_unicode_is_prop(cc, UC_SC, 0)
- #define php_unicode_is_modifsymbol(cc) php_unicode_is_prop(cc, UC_SK, 0)
- #define php_unicode_is_nsmark(cc) php_unicode_is_prop(cc, UC_MN, 0)
- #define php_unicode_is_spmark(cc) php_unicode_is_prop(cc, UC_MC, 0)
- #define php_unicode_is_enclosing(cc) php_unicode_is_prop(cc, UC_ME, 0)
- #define php_unicode_is_private(cc) php_unicode_is_prop(cc, UC_CO, 0)
- #define php_unicode_is_surrogate(cc) php_unicode_is_prop(cc, UC_OS, 0)
- #define php_unicode_is_lsep(cc) php_unicode_is_prop(cc, UC_ZL, 0)
- #define php_unicode_is_psep(cc) php_unicode_is_prop(cc, UC_ZP, 0)
- #define php_unicode_is_identstart(cc) php_unicode_is_prop(cc, UC_LU|UC_LL|UC_LT|UC_LO|UC_NL, 0)
- #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, 0)
- #define php_unicode_is_defined(cc) php_unicode_is_prop(cc, 0, UC_CP)
- #define php_unicode_is_undefined(cc) !php_unicode_is_prop(cc, 0, UC_CP)
- #define php_unicode_is_han(cc) (((cc) >= 0x4e00 && (cc) <= 0x9fff) ||\
- ((cc) >= 0xf900 && (cc) <= 0xfaff))
- #define php_unicode_is_hangul(cc) ((cc) >= 0xac00 && (cc) <= 0xd7ff)
- #endif
- #endif
|