aboutsummaryrefslogtreecommitdiffstats
path: root/man3/regex.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/regex.3')
-rw-r--r--man3/regex.38
1 files changed, 4 insertions, 4 deletions
diff --git a/man3/regex.3 b/man3/regex.3
index 90ffb8cdb5..68aab89a84 100644
--- a/man3/regex.3
+++ b/man3/regex.3
@@ -34,16 +34,16 @@ regcomp, regexec, regerror, regfree \- POSIX regex functions
.nf
.B #include <sys/types.h>
.B #include <regex.h>
-
+.PP
.BI "int regcomp(regex_t *" preg ", const char *" regex ", int " cflags );
-
+.PP
.BI "int regexec(const regex_t *" preg ", const char *" string \
", size_t " nmatch ,
.BI " regmatch_t " pmatch[] ", int " eflags );
-
+.PP
.BI "size_t regerror(int " errcode ", const regex_t *" preg ", char *" errbuf ,
.BI " size_t " errbuf_size );
-
+.PP
.BI "void regfree(regex_t *" preg );
.fi
.SH DESCRIPTION