(bufp, string, size, startpos, range, regs)
| 2843 | doesn't let you say where to stop matching. */ |
| 2844 | |
| 2845 | int |
| 2846 | re_search (bufp, string, size, startpos, range, regs) |
| 2847 | struct re_pattern_buffer *bufp; |
| 2848 | const char *string; |
| 2849 | int size, startpos, range; |
| 2850 | struct re_registers *regs; |
| 2851 | { |
| 2852 | return re_search_2 (bufp, NULL, 0, string, size, startpos, range, |
| 2853 | regs, size); |
| 2854 | } |
| 2855 | |
| 2856 | |
| 2857 | /* Using the compiled pattern in BUFP->buffer, first tries to match the |
no test coverage detected