From fa40f30b4253b1e05c46cc5e0c111176825b7623 Mon Sep 17 00:00:00 2001 From: Mystery Man Date: Wed, 29 Oct 2003 16:07:11 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'Corpo_2_1_1'. --- mdk-stage1/dietlibc/include/regex.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'mdk-stage1/dietlibc/include/regex.h') diff --git a/mdk-stage1/dietlibc/include/regex.h b/mdk-stage1/dietlibc/include/regex.h index be609d9db..abc9ab57b 100644 --- a/mdk-stage1/dietlibc/include/regex.h +++ b/mdk-stage1/dietlibc/include/regex.h @@ -38,6 +38,7 @@ typedef struct __regex_t { int brackets,cflags; regmatch_t *l; } regex_t; +#define re_nsub r.pieces int regcomp(regex_t *preg, const char *regex, int cflags) __THROW; int regexec(const regex_t *preg, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags) __THROW; @@ -61,7 +62,10 @@ enum __regex_errors { REG_BADPAT, /* Invalid use of pattern operators such as group or list. */ REG_ESIZE, /* Compiled regular expression requires a pattern buffer larger than 64Kb. This is not defined by POSIX.2. */ - REG_ESPACE, /* regcomp ran out of space */ + REG_ESPACE /* regcomp ran out of space */ }; +char * re_comp(char * regex); +int re_exec(char * string); + #endif -- cgit v1.2.1