summaryrefslogtreecommitdiff
path: root/src/pcre2_string_utils.c
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2014-08-15 09:55:18 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2014-08-15 09:55:18 +0000
commit585bd0734f40d5ff46b74e5d7e62862b35b5bc64 (patch)
treea6ee8aa2b2559c7cd1bb30195e237d69be385444 /src/pcre2_string_utils.c
parentad38ecd3161732395fddbb4763f5c4b20c5b63cf (diff)
downloadpcre2-585bd0734f40d5ff46b74e5d7e62862b35b5bc64.tar.gz
Tidy some comments; change several PCRE2_INFO fields to uint32_t instead of
int. git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@54 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'src/pcre2_string_utils.c')
-rw-r--r--src/pcre2_string_utils.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pcre2_string_utils.c b/src/pcre2_string_utils.c
index 2b585d0..8b0a45d 100644
--- a/src/pcre2_string_utils.c
+++ b/src/pcre2_string_utils.c
@@ -49,8 +49,6 @@ functions work only on 8-bit data. */
#include "pcre2_internal.h"
-/* FIXME: this module is incomplete */
-
/*************************************************
* Compare two zero-terminated PCRE2 strings *
@@ -82,7 +80,9 @@ return 0;
* Compare zero-terminated PCRE2 & 8-bit strings *
*************************************************/
-/*
+/* As the 8-bit string is almost always a literal, its type is specified as
+const char *.
+
Arguments:
str1 first string
str2 second string
@@ -136,7 +136,7 @@ return 0;
*************************************************/
/* As the 8-bit string is almost always a literal, its type is specified as
-'const char *'.
+const char *.
Arguments:
str1 first string
@@ -162,7 +162,7 @@ return 0;
/*************************************************
-* Find the length of a string *
+* Find the length of a PCRE2 string *
*************************************************/
/*