1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-10 05:03:06 +03:00

Fix regex type usage

include/regex.h had not been updated during the int -> Idx transition,
and the prototypes don't matched the definitions in regexec.c.

In regcomp.c, most interfaces were updated for Idx, except for two ones
guarded by #if _LIBC.

Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz>
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
This commit is contained in:
наб
2023-04-23 02:55:05 +02:00
committed by Siddhesh Poyarekar
parent e2b3d7f485
commit be9ad3004f
2 changed files with 15 additions and 15 deletions

View File

@@ -11,27 +11,27 @@ extern const char *__re_compile_pattern (const char *pattern, size_t length,
extern int __re_compile_fastmap (struct re_pattern_buffer *buffer)
attribute_hidden;
extern int __re_search (struct re_pattern_buffer *buffer, const char *string,
int length, int start, int range,
extern regoff_t __re_search (struct re_pattern_buffer *buffer, const char *string,
regoff_t length, regoff_t start, regoff_t range,
struct re_registers *regs);
extern int __re_search_2
extern regoff_t __re_search_2
(struct re_pattern_buffer *buffer, const char *string1,
int length1, const char *string2, int length2,
int start, int range, struct re_registers *regs, int stop);
regoff_t length1, const char *string2, regoff_t length2,
regoff_t start, regoff_t range, struct re_registers *regs, regoff_t stop);
extern int __re_match
extern regoff_t __re_match
(struct re_pattern_buffer *buffer, const char *string,
int length, int start, struct re_registers *regs);
regoff_t length, regoff_t start, struct re_registers *regs);
extern int __re_match_2
extern regoff_t __re_match_2
(struct re_pattern_buffer *buffer, const char *string1,
int length1, const char *string2, int length2,
int start, struct re_registers *regs, int stop);
regoff_t length1, const char *string2, regoff_t length2,
regoff_t start, struct re_registers *regs, regoff_t stop);
extern void __re_set_registers
(struct re_pattern_buffer *buffer, struct re_registers *regs,
unsigned num_regs, regoff_t *starts, regoff_t *ends);
__re_size_t num_regs, regoff_t *starts, regoff_t *ends);
extern int __regcomp (regex_t *__preg, const char *__pattern, int __cflags);
libc_hidden_proto (__regcomp)