Upgrade grep version 2.9 to 2.12 on the vendor branch
[dragonfly.git] / contrib / grep / lib / regex.c
1 /* Extended regular expression matching and search library.
2    Copyright (C) 2002-2003, 2005-2006, 2009-2012 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License along
17    with this program; if not, see <http://www.gnu.org/licenses/>.  */
18
19 #ifndef _LIBC
20 # include <config.h>
21
22 # if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__
23 #  pragma GCC diagnostic ignored "-Wsuggest-attribute=pure"
24 # endif
25 # if (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) || 4 < __GNUC__
26 #  pragma GCC diagnostic ignored "-Wtype-limits"
27 # endif
28 #endif
29
30 /* Make sure no one compiles this code with a C++ compiler.  */
31 #if defined __cplusplus && defined _LIBC
32 # error "This is C code, use a C compiler"
33 #endif
34
35 #ifdef _LIBC
36 /* We have to keep the namespace clean.  */
37 # define regfree(preg) __regfree (preg)
38 # define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef)
39 # define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags)
40 # define regerror(errcode, preg, errbuf, errbuf_size) \
41         __regerror(errcode, preg, errbuf, errbuf_size)
42 # define re_set_registers(bu, re, nu, st, en) \
43         __re_set_registers (bu, re, nu, st, en)
44 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
45         __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
46 # define re_match(bufp, string, size, pos, regs) \
47         __re_match (bufp, string, size, pos, regs)
48 # define re_search(bufp, string, size, startpos, range, regs) \
49         __re_search (bufp, string, size, startpos, range, regs)
50 # define re_compile_pattern(pattern, length, bufp) \
51         __re_compile_pattern (pattern, length, bufp)
52 # define re_set_syntax(syntax) __re_set_syntax (syntax)
53 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
54         __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
55 # define re_compile_fastmap(bufp) __re_compile_fastmap (bufp)
56
57 # include "../locale/localeinfo.h"
58 #endif
59
60 /* On some systems, limits.h sets RE_DUP_MAX to a lower value than
61    GNU regex allows.  Include it before <regex.h>, which correctly
62    #undefs RE_DUP_MAX and sets it to the right value.  */
63 #include <limits.h>
64
65 #include <regex.h>
66 #include "regex_internal.h"
67
68 #include "regex_internal.c"
69 #include "regcomp.c"
70 #include "regexec.c"
71
72 /* Binary backward compatibility.  */
73 #if _LIBC
74 # include <shlib-compat.h>
75 # if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_3)
76 link_warning (re_max_failures, "the 're_max_failures' variable is obsolete and will go away.")
77 int re_max_failures = 2000;
78 # endif
79 #endif