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 Free Software Foundation, Inc. 5 This file is part of the GNU C Library. 6 Contributed by Isamu Hasegawa <isamu (at) yamato.ibm.com>. 7 8 This program is free software; you can redistribute it and/or modify 9 it under the terms of the GNU General Public License as published by 10 the Free Software Foundation; either version 3, or (at your option) 11 any later version. 12 13 This program is distributed in the hope that it will be useful, 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 GNU General Public License for more details. 17 18 You should have received a copy of the GNU General Public License along 19 with this program; if not, write to the Free Software Foundation, 20 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ 21 22 #include <config.h> 23 24 /* Make sure noone compiles this code with a C++ compiler. */ 25 #if defined __cplusplus && defined _LIBC 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 #include <regex.h> 60 #include "regex_internal.h" 61 62 #include "regex_internal.c" 63 #include "regcomp.c" 64 #include "regexec.c" 65 66 /* Binary backward compatibility. */ 67 #if _LIBC 68 # include <shlib-compat.h> 69 # if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_3) 70 link_warning (re_max_failures, "the 're_max_failures' variable is obsolete and will go away.") 71 int re_max_failures = 2000; 72 # endif 73 #endif 74