regex.c 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* 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>.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 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. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, see
  15. <http://www.gnu.org/licenses/>. */
  16. #ifdef HAVE_CONFIG_H
  17. #include "config.h"
  18. #endif
  19. /* Make sure no one compiles this code with a C++ compiler. */
  20. #ifdef __cplusplus
  21. # error "This is C code, use a C compiler"
  22. #endif
  23. #ifdef _LIBC
  24. /* We have to keep the namespace clean. */
  25. # define regfree(preg) __regfree (preg)
  26. # define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef)
  27. # define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags)
  28. # define regerror(errcode, preg, errbuf, errbuf_size) \
  29. __regerror(errcode, preg, errbuf, errbuf_size)
  30. # define re_set_registers(bu, re, nu, st, en) \
  31. __re_set_registers (bu, re, nu, st, en)
  32. # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
  33. __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
  34. # define re_match(bufp, string, size, pos, regs) \
  35. __re_match (bufp, string, size, pos, regs)
  36. # define re_search(bufp, string, size, startpos, range, regs) \
  37. __re_search (bufp, string, size, startpos, range, regs)
  38. # define re_compile_pattern(pattern, length, bufp) \
  39. __re_compile_pattern (pattern, length, bufp)
  40. # define re_set_syntax(syntax) __re_set_syntax (syntax)
  41. # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
  42. __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
  43. # define re_compile_fastmap(bufp) __re_compile_fastmap (bufp)
  44. # include "../locale/localeinfo.h"
  45. #endif
  46. #if defined (_MSC_VER)
  47. #include <stdio.h> /* for size_t */
  48. #endif
  49. /* On some systems, limits.h sets RE_DUP_MAX to a lower value than
  50. GNU regex allows. Include it before <regex.h>, which correctly
  51. #undefs RE_DUP_MAX and sets it to the right value. */
  52. #include <limits.h>
  53. #include <stdint.h>
  54. #include <stdlib.h>
  55. #ifdef GAWK
  56. #undef alloca
  57. #define alloca alloca_is_bad_you_should_never_use_it
  58. #endif
  59. #include <regex.h>
  60. #include "regex_internal.h"
  61. #include "regex_internal.c"
  62. #ifdef GAWK
  63. #define bool int
  64. #define true (1)
  65. #define false (0)
  66. #endif
  67. #include "regcomp.c"
  68. #include "regexec.c"
  69. /* Binary backward compatibility. */
  70. #if _LIBC
  71. # include <shlib-compat.h>
  72. # if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_3)
  73. link_warning (re_max_failures, "the 're_max_failures' variable is obsolete and will go away.")
  74. int re_max_failures = 2000;
  75. # endif
  76. #endif