Changeset 18498 in webkit for trunk/JavaScriptCore/pcre/pcre_compile.c
- Timestamp:
- Dec 31, 2006, 9:07:40 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_compile.c
r18483 r18498 55 55 #define DIGITAB(x) digitab[(x)] 56 56 #endif 57 58 59 /* When DEBUG is defined, we need the pcre_printint() function, which is also 60 used by pcretest. DEBUG is not defined when building a production library. */ 61 62 #ifdef DEBUG 63 #include "pcre_printint.src" 64 #endif 65 57 66 58 67 … … 3894 3903 */ 3895 3904 3896 EXPORT pcre *3905 PCRE_EXPORT pcre * 3897 3906 pcre_compile(const pcre_char *pattern, int options, const char **errorptr, 3898 3907 int *erroroffset, const unsigned char *tables) … … 3902 3911 3903 3912 3904 EXPORT pcre *3913 PCRE_EXPORT pcre * 3905 3914 pcre_compile2(const pcre_char *pattern, int options, int *errorcodeptr, 3906 3915 const char **errorptr, int *erroroffset, const unsigned char *tables) … … 5101 5110 } 5102 5111 5103 /* Print out the compiled data for debugging */ 5112 /* Print out the compiled data if debugging is enabled. This is never the 5113 case when building a production library. */ 5104 5114 5105 5115 #ifdef DEBUG … … 5139 5149 } 5140 5150 5141 _pcre_printint(re, stdout);5151 pcre_printint(re, stdout); 5142 5152 5143 5153 /* This check is done here in the debugging case so that the code that
Note:
See TracChangeset
for help on using the changeset viewer.