Changeset 27686 in webkit for trunk/JavaScriptCore/pcre/dftables.cpp
- Timestamp:
- Nov 11, 2007, 10:56:13 AM (18 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/dftables.cpp
r27681 r27686 1 /************************************************* 2 * Perl-Compatible Regular Expressions * 3 *************************************************/ 1 /* This is JavaScriptCore's variant of the PCRE library. While this library 2 started out as a copy of PCRE, many of the features of PCRE have been 3 removed. This library now supports only the regular expression features 4 required by the JavaScript language specification, and has only the functions 5 needed by JavaScriptCore and the rest of WebKit. 4 6 5 /* PCRE is a library of functions to support regular expressions whose syntax 6 and semantics are as close as possible to those of the Perl 5 language. 7 8 Written by Philip Hazel 7 Originally written by Philip Hazel 9 8 Copyright (c) 1997-2006 University of Cambridge 9 Copyright (C) 2002, 2004, 2006, 2007 Apple Inc. All rights reserved. 10 10 11 11 ----------------------------------------------------------------------------- … … 50 50 #include "pcre_internal.h" 51 51 52 #define DFTABLES /* pcre_maketables.c notices this */ 53 #include "pcre_maketables.c" 54 52 #include "pcre_maketables.cpp" 55 53 56 54 int main(int argc, char **argv) … … 134 132 "/* This table identifies various classes of character by individual bits:\n" 135 133 " 0x%02x white space character\n" 136 " 0x%02x decimal digit\n"137 134 " 0x%02x hexadecimal digit\n" 138 135 " 0x%02x alphanumeric or '_'\n*/\n\n", 139 ctype_space, ctype_ digit, ctype_xdigit, ctype_word);136 ctype_space, ctype_xdigit, ctype_word); 140 137 141 138 fprintf(f, " "); … … 166 163 return 0; 167 164 } 168 169 /* End of dftables.c */
Note:
See TracChangeset
for help on using the changeset viewer.