3529 |
othercasechar = cc + (othercasebit >> 8); |
othercasechar = cc + (othercasebit >> 8); |
3530 |
othercasebit &= 0xff; |
othercasebit &= 0xff; |
3531 |
#elif defined COMPILE_PCRE16 || defined COMPILE_PCRE32 |
#elif defined COMPILE_PCRE16 || defined COMPILE_PCRE32 |
3532 |
|
/* Note that this code only handles characters in the BMP. If there |
3533 |
|
ever are characters outside the BMP whose othercase differs in only one |
3534 |
|
bit from itself (there currently are none), this code will need to be |
3535 |
|
revised for COMPILE_PCRE32. */ |
3536 |
othercasechar = cc + (othercasebit >> 9); |
othercasechar = cc + (othercasebit >> 9); |
3537 |
if ((othercasebit & 0x100) != 0) |
if ((othercasebit & 0x100) != 0) |
3538 |
othercasebit = (othercasebit & 0xff) << 8; |
othercasebit = (othercasebit & 0xff) << 8; |