~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to support/regex.c

  • Committer: Arnold D. Robbins
  • Date: 2016-12-22 15:22:49 UTC
  • mfrom: (731.1.11)
  • Revision ID: git-v1:1358693d2464c89a8d715fa6104ed36b48e45990
Merge branch 'master' into feature/fix-comments

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Extended regular expression matching and search library.
 
2
   Copyright (C) 2002-2016 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
   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.
 
10
 
 
11
   The GNU C Library 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 GNU
 
14
   Lesser General Public License for more details.
 
15
 
 
16
   You should have received a copy of the GNU Lesser General Public
 
17
   License along with the GNU C Library; if not, see
 
18
   <http://www.gnu.org/licenses/>.  */
 
19
 
 
20
#ifdef HAVE_CONFIG_H
 
21
#include "config.h"
 
22
#endif
 
23
 
 
24
/* Make sure noone compiles this code with a C++ compiler.  */
 
25
#ifdef __cplusplus
 
26
# error "This is C code, use a C compiler"
 
27
#endif
 
28
 
 
29
#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)
 
50
 
 
51
# include "../locale/localeinfo.h"
 
52
#endif
 
53
 
 
54
/* On some systems, limits.h sets RE_DUP_MAX to a lower value than
 
55
   GNU regex allows.  Include it before <regex.h>, which correctly
 
56
   #undefs RE_DUP_MAX and sets it to the right value.  */
 
57
#include <limits.h>
 
58
 
 
59
/* This header defines the MIN and MAX macros.  */
 
60
#ifdef HAVE_SYS_PARAM_H
 
61
#include <sys/param.h>
 
62
#endif /* HAVE_SYS_PARAM_H */
 
63
 
 
64
#ifdef GAWK
 
65
#undef alloca
 
66
#define alloca alloca_is_bad_you_should_never_use_it
 
67
#endif
 
68
#include <regex.h>
 
69
#include "regex_internal.h"
 
70
 
 
71
#include "regex_internal.c"
 
72
#ifndef HAVE_STDBOOL_H
 
73
#include "missing_d/gawkbool.h"
 
74
#endif
 
75
#include "regcomp.c"
 
76
#include "regexec.c"
 
77
 
 
78
/* Binary backward compatibility.  */
 
79
#if _LIBC
 
80
# include <shlib-compat.h>
 
81
# if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_3)
 
82
link_warning (re_max_failures, "the 're_max_failures' variable is obsolete and will go away.")
 
83
int re_max_failures = 2000;
 
84
# endif
 
85
#endif