| 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-2007 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 |
| 43 |
auxiliary local function to flip the appropriate bytes. */ |
auxiliary local function to flip the appropriate bytes. */ |
| 44 |
|
|
| 45 |
|
|
| 46 |
|
#ifdef HAVE_CONFIG_H |
| 47 |
|
#include <config.h> |
| 48 |
|
#endif |
| 49 |
|
|
| 50 |
#include "pcre_internal.h" |
#include "pcre_internal.h" |
| 51 |
|
|
| 52 |
|
|
| 66 |
Returns: the flipped value |
Returns: the flipped value |
| 67 |
*/ |
*/ |
| 68 |
|
|
| 69 |
static long int |
static unsigned long int |
| 70 |
byteflip(long int value, int n) |
byteflip(unsigned long int value, int n) |
| 71 |
{ |
{ |
| 72 |
if (n == 2) return ((value & 0x00ff) << 8) | ((value & 0xff00) >> 8); |
if (n == 2) return ((value & 0x00ff) << 8) | ((value & 0xff00) >> 8); |
| 73 |
return ((value & 0x000000ff) << 24) | |
return ((value & 0x000000ff) << 24) | |
| 98 |
NULL if it is not |
NULL if it is not |
| 99 |
*/ |
*/ |
| 100 |
|
|
| 101 |
EXPORT real_pcre * |
real_pcre * |
| 102 |
_pcre_try_flipped(const real_pcre *re, real_pcre *internal_re, |
_pcre_try_flipped(const real_pcre *re, real_pcre *internal_re, |
| 103 |
const pcre_study_data *study, pcre_study_data *internal_study) |
const pcre_study_data *study, pcre_study_data *internal_study) |
| 104 |
{ |
{ |