Changeset 18498 in webkit for trunk/JavaScriptCore/pcre/pcre_internal.h
- Timestamp:
- Dec 31, 2006, 9:07:40 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_internal.h
r17372 r18498 40 40 */ 41 41 42 /* This header contains definitions that are shared between the different 43 modules, but which are not relevant to the exported API. This includes some 44 functions whose names all begin with "_pcre_". */ 45 46 #ifndef PCRE_INTERNAL_H 47 #define PCRE_INTERNAL_H 48 42 49 #include "Assertions.h" 43 50 … … 54 61 #pragma warning(disable: 4244) 55 62 #endif 56 57 /* This header contains definitions that are shared between the different58 modules, but which are not relevant to the exported API. This includes some59 functions whose names all begin with "_pcre_". */60 63 61 64 #define _pcre_OP_lengths kjs_pcre_OP_lengths … … 77 80 /* Define DEBUG to get debugging output on stdout. */ 78 81 79 /**** 82 #if 0 80 83 #define DEBUG 81 ****/ 84 #endif 82 85 83 86 /* Use a macro for debugging printing, 'cause that eliminates the use of #ifdef … … 135 138 #endif 136 139 137 /* Include the public PCRE header */ 140 /* Include the public PCRE header and the definitions of UCP character property 141 values. */ 138 142 139 143 #include "pcre.h" 144 #include "ucp.h" 140 145 141 146 /* All character handling must be done as unsigned characters. Otherwise there … … 154 159 typedef unsigned char pcre_uchar; 155 160 #endif 156 157 /* Include the (copy of) the public ucp header, changing the external name into158 a private one. This does no harm, even if we aren't compiling UCP support. */159 160 #define ucp_findchar _pcre_ucp_findchar161 #include "ucp.h"162 161 163 162 /* When compiling for use with the Virtual Pascal compiler, these functions … … 952 951 953 952 /* Layout of the UCP type table that translates property names into codes for 954 ucp_findchar(). */953 _pcre_ucp_findchar(). */ 955 954 956 955 typedef struct { … … 984 983 985 984 extern int _pcre_ord2utf8(int, uschar *); 986 extern void _pcre_printint(pcre *, FILE *);987 985 extern real_pcre * _pcre_try_flipped(const real_pcre *, real_pcre *, 988 986 const pcre_study_data *, pcre_study_data *); … … 991 989 extern BOOL _pcre_xclass(int, const uschar *); 992 990 991 #endif 992 993 993 /* End of pcre_internal.h */
Note:
See TracChangeset
for help on using the changeset viewer.