Changes: Ready for 5.13
[man-pages.git] / man3 / re_comp.3
blob303430d095f86a1eb3c6d416f17aa4015b059c44
1 .\" Copyright (C), 1995, Graeme W. Wilford. (Wilf.)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" Wed Jun 14 16:10:28 BST 1995 Wilf. (G.Wilford@@ee.surrey.ac.uk)
26 .\"
27 .TH RE_COMP 3 2021-03-22 "GNU" "Linux Programmer's Manual"
28 .SH NAME
29 re_comp, re_exec \- BSD regex functions
30 .SH SYNOPSIS
31 .nf
32 .B #define _REGEX_RE_COMP
33 .B #include <sys/types.h>
34 .B #include <regex.h>
35 .PP
36 .BI "char *re_comp(const char *" regex );
37 .BI "int re_exec(const char *" string );
38 .fi
39 .SH DESCRIPTION
40 .BR re_comp ()
41 is used to compile the null-terminated regular expression pointed to by
42 .IR regex .
43 The compiled pattern occupies a static area, the pattern buffer,
44 which is overwritten by subsequent use of
45 .BR re_comp ().
47 .I regex
48 is NULL,
49 no operation is performed and the pattern buffer's contents are not
50 altered.
51 .PP
52 .BR re_exec ()
53 is used to assess whether the null-terminated string pointed to by
54 .I string
55 matches the previously compiled
56 .IR regex .
57 .SH RETURN VALUE
58 .BR re_comp ()
59 returns NULL on successful compilation of
60 .I regex
61 otherwise it returns a pointer to an appropriate error message.
62 .PP
63 .BR re_exec ()
64 returns 1 for a successful match, zero for failure.
65 .SH ATTRIBUTES
66 For an explanation of the terms used in this section, see
67 .BR attributes (7).
68 .ad l
69 .nh
70 .TS
71 allbox;
72 lbx lb lb
73 l l l.
74 Interface       Attribute       Value
76 .BR re_comp (),
77 .BR re_exec ()
78 T}      Thread safety   MT-Unsafe
79 .TE
80 .hy
81 .ad
82 .sp 1
83 .SH CONFORMING TO
84 4.3BSD.
85 .SH NOTES
86 These functions are obsolete; the functions documented in
87 .BR regcomp (3)
88 should be used instead.
89 .SH SEE ALSO
90 .BR regcomp (3),
91 .BR regex (7),
92 GNU regex manual