summaryrefslogtreecommitdiff
path: root/pcretest.c
diff options
context:
space:
mode:
authorchpe <chpe@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-16 15:55:38 +0000
committerchpe <chpe@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-16 15:55:38 +0000
commiteda06e7a8584053a7d81ec394af4781b9c88fb4e (patch)
treef38893cc63ea53a14350c526e651b0342dc5d3f4 /pcretest.c
parent59afbc3ce4f825303fa0d0b08f62df36488e9f86 (diff)
downloadpcre-eda06e7a8584053a7d81ec394af4781b9c88fb4e.tar.gz
pcre32: pcretest: Comment fixes
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1087 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcretest.c')
-rw-r--r--pcretest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pcretest.c b/pcretest.c
index 98b9f8e..982bdd0 100644
--- a/pcretest.c
+++ b/pcretest.c
@@ -151,7 +151,7 @@ appropriately for an application, not for building PCRE. */
/* The pcre_printint() function, which prints the internal form of a compiled
regex, is held in a separate file so that (a) it can be compiled in either
-8-bit or 16-bit mode, and (b) it can be #included directly in pcre_compile.c
+8-, 16- or 32-bit mode, and (b) it can be #included directly in pcre_compile.c
when that is compiled in debug mode. */
#ifdef SUPPORT_PCRE8
@@ -211,7 +211,7 @@ automatically cut out the UTF support if PCRE is built without it. */
#endif
#endif
-/* To make the code a bit tidier for 8-bit and 16-bit support, we define macros
+/* To make the code a bit tidier for 8/16/32-bit support, we define macros
for all the pcre[16]_xxx functions (except pcre16_fullinfo, which is called
only from one place and is handled differently). I couldn't dream up any way of
using a single macro to do this in a generic way, because of the many different
@@ -834,7 +834,7 @@ static pcre_uint8 *buffer = NULL;
static pcre_uint8 *dbuffer = NULL;
static pcre_uint8 *pbuffer = NULL;
-/* Another buffer is needed translation to 16-bit character strings. It will
+/* Another buffer is needed translation to 16/32-bit character strings. It will
obtained and extended as required. */
#if defined SUPPORT_PCRE8 && (defined SUPPORT_PCRE16 || defined SUPPORT_PCRE32)