| 6 |
and semantics are as close as possible to those of the Perl 5 language. |
and semantics are as close as possible to those of the Perl 5 language. |
| 7 |
|
|
| 8 |
Written by Philip Hazel |
Written by Philip Hazel |
| 9 |
Copyright (c) 1997-2005 University of Cambridge |
Copyright (c) 1997-2006 University of Cambridge |
| 10 |
|
|
| 11 |
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
| 12 |
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
| 62 |
Returns: the flipped value |
Returns: the flipped value |
| 63 |
*/ |
*/ |
| 64 |
|
|
| 65 |
static long int |
static unsigned long int |
| 66 |
byteflip(long int value, int n) |
byteflip(unsigned long int value, int n) |
| 67 |
{ |
{ |
| 68 |
if (n == 2) return ((value & 0x00ff) << 8) | ((value & 0xff00) >> 8); |
if (n == 2) return ((value & 0x00ff) << 8) | ((value & 0xff00) >> 8); |
| 69 |
return ((value & 0x000000ff) << 24) | |
return ((value & 0x000000ff) << 24) | |
| 94 |
NULL if it is not |
NULL if it is not |
| 95 |
*/ |
*/ |
| 96 |
|
|
| 97 |
EXPORT real_pcre * |
real_pcre * |
| 98 |
_pcre_try_flipped(const real_pcre *re, real_pcre *internal_re, |
_pcre_try_flipped(const real_pcre *re, real_pcre *internal_re, |
| 99 |
const pcre_study_data *study, pcre_study_data *internal_study) |
const pcre_study_data *study, pcre_study_data *internal_study) |
| 100 |
{ |
{ |