blob: 6aaae003274e268f274df4b76e02609d5f27e457 [file] [log] [blame]
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +00001/* Extended regular expression matching and search library.
2 Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
Johannes Sixtf05951f2007-12-09 15:43:34 +01005
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +00006 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
Johannes Sixtf05951f2007-12-09 15:43:34 +010010
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000011 The GNU C Library is distributed in the hope that it will be useful,
Johannes Sixtf05951f2007-12-09 15:43:34 +010012 but WITHOUT ANY WARRANTY; without even the implied warranty of
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
Johannes Sixtf05951f2007-12-09 15:43:34 +010015
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000016 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA. */
Johannes Sixtf05951f2007-12-09 15:43:34 +010020
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000021#ifdef HAVE_CONFIG_H
22#include "config.h"
Johannes Sixtf05951f2007-12-09 15:43:34 +010023#endif
24
Stefano Lattarinice9171c2013-04-12 00:36:10 +020025/* Make sure no one compiles this code with a C++ compiler. */
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000026#ifdef __cplusplus
27# error "This is C code, use a C compiler"
Johannes Sixtf05951f2007-12-09 15:43:34 +010028#endif
29
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000030#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)
Johannes Sixtf05951f2007-12-09 15:43:34 +010051
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000052# include "../locale/localeinfo.h"
Johannes Sixtf05951f2007-12-09 15:43:34 +010053#endif
54
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000055#if defined (_MSC_VER)
56#include <stdio.h> /* for size_t */
Johannes Sixtf05951f2007-12-09 15:43:34 +010057#endif
58
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000059/* On some systems, limits.h sets RE_DUP_MAX to a lower value than
60 GNU regex allows. Include it before <regex.h>, which correctly
61 #undefs RE_DUP_MAX and sets it to the right value. */
62#include <limits.h>
63
64#ifdef GAWK
65#undef alloca
66#define alloca alloca_is_bad_you_should_never_use_it
Johannes Sixtf05951f2007-12-09 15:43:34 +010067#endif
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000068#include <regex.h>
69#include "regex_internal.h"
70
71#include "regex_internal.c"
72#ifdef GAWK
73#define bool int
74#define true (1)
75#define false (0)
Johannes Sixtf05951f2007-12-09 15:43:34 +010076#endif
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000077#include "regcomp.c"
78#include "regexec.c"
Johannes Sixtf05951f2007-12-09 15:43:34 +010079
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000080/* Binary backward compatibility. */
81#if _LIBC
82# include <shlib-compat.h>
83# if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_3)
84link_warning (re_max_failures, "the 're_max_failures' variable is obsolete and will go away.")
Johannes Sixtf05951f2007-12-09 15:43:34 +010085int re_max_failures = 2000;
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000086# endif
Johannes Sixtf05951f2007-12-09 15:43:34 +010087#endif