regex.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* Extended regular expression matching and search library.
  2. Copyright (C) 2002-2013 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU General Public
  7. License as published by the Free Software Foundation; either
  8. version 3 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. General Public License for more details.
  13. You should have received a copy of the GNU General Public
  14. License along with the GNU C Library; if not, see
  15. <http://www.gnu.org/licenses/>. */
  16. #ifndef _LIBC
  17. # include <config.h>
  18. # if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__
  19. # pragma GCC diagnostic ignored "-Wsuggest-attribute=pure"
  20. # endif
  21. # if (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) || 4 < __GNUC__
  22. # pragma GCC diagnostic ignored "-Wold-style-definition"
  23. # pragma GCC diagnostic ignored "-Wtype-limits"
  24. # endif
  25. #endif
  26. /* Make sure no one compiles this code with a C++ compiler. */
  27. #if defined __cplusplus && defined _LIBC
  28. # error "This is C code, use a C compiler"
  29. #endif
  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. # error #include "../locale/localeinfo.h"
  52. #endif
  53. /* On some systems, limits.h sets RE_DUP_MAX to a lower value than
  54. GNU regex allows. Include it before <regex.h>, which correctly
  55. #undefs RE_DUP_MAX and sets it to the right value. */
  56. #include <limits.h>
  57. #include <regex.h>
  58. #include "regex_internal.h"
  59. #include "regex_internal.c"
  60. #include "regcomp.c"
  61. #include "regexec.c"
  62. /* Binary backward compatibility. */
  63. #if _LIBC
  64. # include <shlib-compat.h>
  65. # if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_3)
  66. link_warning (re_max_failures, "the 're_max_failures' variable is obsolete and will go away.")
  67. int re_max_failures = 2000;
  68. # endif
  69. #endif