summaryrefslogtreecommitdiffstats
path: root/include/pcreposix.h
diff options
context:
space:
mode:
authorBen Laurie <ben@apache.org>2001-03-11 15:54:13 +0100
committerBen Laurie <ben@apache.org>2001-03-11 15:54:13 +0100
commit759dfd4d71242b9594e06a6fb0ef42c1219150cd (patch)
tree2d1a746db74d081966a5f3965110f543cc932fb8 /include/pcreposix.h
parentactually dump the cache code (diff)
downloadapache2-759dfd4d71242b9594e06a6fb0ef42c1219150cd.tar.xz
apache2-759dfd4d71242b9594e06a6fb0ef42c1219150cd.zip
First step in doxygen conversion.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88490 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/pcreposix.h')
-rw-r--r--include/pcreposix.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/pcreposix.h b/include/pcreposix.h
index 7660acbd55..a847421fce 100644
--- a/include/pcreposix.h
+++ b/include/pcreposix.h
@@ -4,6 +4,11 @@
/* Copyright (c) 1997-2000 University of Cambridge */
+/**
+ * @file include/pcreposix.h
+ * @brief PCRE definitions
+ */
+
#ifndef _PCREPOSIX_H
#define _PCREPOSIX_H
@@ -23,15 +28,21 @@ extern "C" {
/* Options defined by POSIX. */
+ /** Ignore case */
#define REG_ICASE 0x01
+ /** Don't match newlines with wildcards */
#define REG_NEWLINE 0x02
+ /** Don't match BOL */
#define REG_NOTBOL 0x04
+ /** Don't match EOL */
#define REG_NOTEOL 0x08
/* These are not used by PCRE, but by defining them we make it easier
to slot PCRE into existing programs that make POSIX calls. */
+ /** UNUSED! */
#define REG_EXTENDED 0
+ /** UNUSED! */
#define REG_NOSUB 0
/* Error values. Not all these are relevant or used by the wrapper. */