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