wxWidgets/src/regex
2006-01-18 12:46:11 +00:00
..
.cvsignore Patch from "Viktor Voroshylo" <viktor@voroshylo.com> 2004-01-27 17:47:37 +00:00
COPYRIGHT applied patch 890642: wxRE_ADVANCED flag and docs 2004-02-19 16:57:15 +00:00
re_syntax.n Tcl regex lib 1999-08-05 01:16:55 +00:00
README applied patch 890642: wxRE_ADVANCED flag and docs 2004-02-19 16:57:15 +00:00
regc_color.c fix some 'might not be initialized in this function' warnings 2005-02-22 07:15:57 +00:00
regc_cvec.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regc_lex.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regc_locale.c Name and version changes 2004-05-23 14:56:36 +00:00
regc_nfa.c Fix for missing __CHAR_BIT__ under MacOS X 2004-03-30 16:38:19 +00:00
regcomp.c Silence warning about truncation since the comment says it ok 2005-11-27 01:56:51 +00:00
regcustom.h Applied patch [ 1381895 ] remove circular include dependendcy in wxchar.h 2006-01-18 12:46:11 +00:00
rege_dfa.c Fix for missing __CHAR_BIT__ under MacOS X 2004-03-30 16:38:19 +00:00
regerror.c Add 'wx_' prefix to builtin regfree and regerror 2005-11-23 13:56:08 +00:00
regerrs.h reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regex.dsp added missing ANSI DLL configurations (fixes VC6 crash) 2005-04-17 14:31:48 +00:00
regex.h Add 'wx_' prefix to builtin regfree and regerror 2005-11-23 13:56:08 +00:00
regexec.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regexM8.xml using .pch instead of .h resolves the circular dependancy 2005-04-19 12:10:45 +00:00
regfree.c Add 'wx_' prefix to builtin regfree and regerror 2005-11-23 13:56:08 +00:00
regfronts.c Initial revision 1999-06-02 01:53:29 +00:00
regguts.h Fix for missing __CHAR_BIT__ under MacOS X 2004-03-30 16:38:19 +00:00
splice.sh applied patch 890642: wxRE_ADVANCED flag and docs 2004-02-19 17:28:56 +00:00
tclUniData.c Initial revision 2001-05-28 04:45:41 +00:00

wxWindows regex
---------------
This is a version of Henry Spencer's regex, which was taken from the
source of TCL (Toolkit Command Language).  It implements POSIX regular
expressions and also supports Unicode and some Perl5 extensions.

The modifications made by the wxWindows team are as follows:

regcustom.h
-----------
Types and constants appropriate for our use of the library are defined
here.

regex.h
-------
This is unmodified. Note though, that a portion of it (clearly marked)
is copied from regcustom.h as part of the build process.

regc_locale.c
-------------
This module provides character classifications.

The current version from Tcl supports only a Unicode build. The
original code from Henry Spencer, on the other hand, was ASCII only.
Therefore, in order to support both, code from the ASCII version has been
incorporated into the Unicode version, conditionally compiled depending
on wxUSE_UNICODE.

The only non-trivial dependencies were: Tcl_UniCharToUpper,
Tcl_UniCharToLower and Tcl_UniCharToTitle. The implementations of these
have also been incorporated (from Tcl). These in turn depend only the data
tables in tclUniData.c (which is unmodified). At some point wxWindows
may have it's own Unicode character classification code, at which point
these should be used instead.

Other dependencies (on Tcl_DString) have been eliminated using wxWindows
wxChar functions.

The ASCII version has also been extended to support character
classifications based on the current locale rather than ASCII only.