blob: e6f4a5d177bb7d44345fcc25fabca1e62b0eebc4 [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
Todd Zullinger48425792017-11-07 00:39:33 -050017 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
Johannes Sixtf05951f2007-12-09 15:43:34 +010019
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000020#ifdef HAVE_CONFIG_H
21#include "config.h"
Johannes Sixtf05951f2007-12-09 15:43:34 +010022#endif
23
Stefano Lattarinice9171c2013-04-12 00:36:10 +020024/* Make sure no one compiles this code with a C++ compiler. */
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000025#ifdef __cplusplus
26# error "This is C code, use a C compiler"
Johannes Sixtf05951f2007-12-09 15:43:34 +010027#endif
28
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000029#ifdef _LIBC
30/* We have to keep the namespace clean. */
31# define regfree(preg) __regfree (preg)
32# define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef)
33# define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags)
34# define regerror(errcode, preg, errbuf, errbuf_size) \
35 __regerror(errcode, preg, errbuf, errbuf_size)
36# define re_set_registers(bu, re, nu, st, en) \
37 __re_set_registers (bu, re, nu, st, en)
38# define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
39 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
40# define re_match(bufp, string, size, pos, regs) \
41 __re_match (bufp, string, size, pos, regs)
42# define re_search(bufp, string, size, startpos, range, regs) \
43 __re_search (bufp, string, size, startpos, range, regs)
44# define re_compile_pattern(pattern, length, bufp) \
45 __re_compile_pattern (pattern, length, bufp)
46# define re_set_syntax(syntax) __re_set_syntax (syntax)
47# define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
48 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
49# define re_compile_fastmap(bufp) __re_compile_fastmap (bufp)
Johannes Sixtf05951f2007-12-09 15:43:34 +010050
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000051# include "../locale/localeinfo.h"
Johannes Sixtf05951f2007-12-09 15:43:34 +010052#endif
53
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000054#if defined (_MSC_VER)
55#include <stdio.h> /* for size_t */
Johannes Sixtf05951f2007-12-09 15:43:34 +010056#endif
57
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000058/* On some systems, limits.h sets RE_DUP_MAX to a lower value than
59 GNU regex allows. Include it before <regex.h>, which correctly
60 #undefs RE_DUP_MAX and sets it to the right value. */
61#include <limits.h>
Ramsay Jonesbd8f0052016-06-07 01:35:33 +010062#include <stdint.h>
Đoàn Trần Công Danh3bc1f9e2020-04-27 21:22:35 +070063#include <stdlib.h>
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000064
65#ifdef GAWK
66#undef alloca
67#define alloca alloca_is_bad_you_should_never_use_it
Johannes Sixtf05951f2007-12-09 15:43:34 +010068#endif
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000069#include <regex.h>
70#include "regex_internal.h"
71
72#include "regex_internal.c"
73#ifdef GAWK
74#define bool int
75#define true (1)
76#define false (0)
Johannes Sixtf05951f2007-12-09 15:43:34 +010077#endif
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000078#include "regcomp.c"
79#include "regexec.c"
Johannes Sixtf05951f2007-12-09 15:43:34 +010080
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000081/* Binary backward compatibility. */
82#if _LIBC
83# include <shlib-compat.h>
84# if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_3)
85link_warning (re_max_failures, "the 're_max_failures' variable is obsolete and will go away.")
Johannes Sixtf05951f2007-12-09 15:43:34 +010086int re_max_failures = 2000;
Ævar Arnfjörð Bjarmasond18f76d2010-08-17 09:24:38 +000087# endif
Johannes Sixtf05951f2007-12-09 15:43:34 +010088#endif