wxWidgets/src/regex
Stefan Csomor efa4bab2d1 removing old codewarrior files
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67685 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2011-05-03 18:24:15 +00:00
..
COPYRIGHT Globally use "wxWindows licence" consistently. 2010-07-13 13:29:13 +00:00
descrip.mms Include compilation of tests for OpenVMS (part1) 2010-12-15 09:51:48 +00:00
re_syntax.n
README
regc_color.c clang warnings 2011-01-27 11:37:37 +00:00
regc_cvec.c
regc_lex.c
regc_locale.c Globally use "wxWindows licence" consistently. 2010-07-13 13:29:13 +00:00
regc_nfa.c clang warnings 2011-01-27 11:37:37 +00:00
regcomp.c Avoid incompatible operand types 2011-02-03 10:59:50 +00:00
regcustom.h 1. made CRT wrappers definitions indepenent of wxUSE_UNICODE: both ANSI and Unicode variants are now defined 2007-06-10 17:14:14 +00:00
rege_dfa.c Suppress dummy gcc warnings in regex library code. 2010-04-07 12:52:31 +00:00
regerror.c Add 'wx_' prefix to builtin regfree and regerror 2005-11-23 13:56:08 +00:00
regerrs.h
regex.dsp changed ds[pw] files to use CRLF eol style and not native one (this helps if you have them on a partition exported via Samba from Unix to Windows) 2007-06-30 12:13:58 +00:00
regex.h Add 'wx_' prefix to builtin regfree and regerror 2005-11-23 13:56:08 +00:00
regex.vcp added eVC project file for building regex library (patch 1753200) 2007-07-13 12:57:46 +00:00
regexec.c clang warnings 2011-01-27 11:37:37 +00:00
regfree.c Add 'wx_' prefix to builtin regfree and regerror 2005-11-23 13:56:08 +00:00
regfronts.c
regguts.h Define NDEBUG when building 3rd party libraries. 2009-09-18 16:15:54 +00:00
splice.sh
tclUniData.c

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.