diff options
author | tjr <tjr@FreeBSD.org> | 2004-07-12 06:07:26 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2004-07-12 06:07:26 +0000 |
commit | df5304b63cb13fff0de92961ba80dea84c5c552c (patch) | |
tree | 4c57e10772c5dc370c73b755520de78894fdc57b /lib/libc/regex/regerror.c | |
parent | 57e7de678f860b94b4ec21acf2e49439019e3e7f (diff) | |
download | FreeBSD-src-df5304b63cb13fff0de92961ba80dea84c5c552c.zip FreeBSD-src-df5304b63cb13fff0de92961ba80dea84c5c552c.tar.gz |
Add a new error code, REG_ILLSEQ, to indicate that a regular expression
contains an illegal multibyte character sequence.
Diffstat (limited to 'lib/libc/regex/regerror.c')
-rw-r--r-- | lib/libc/regex/regerror.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/regex/regerror.c b/lib/libc/regex/regerror.c index 9888202..7942ef7 100644 --- a/lib/libc/regex/regerror.c +++ b/lib/libc/regex/regerror.c @@ -81,6 +81,7 @@ static char *regatoi(const regex_t *preg, char *localbuf); = #define REG_EMPTY 14 = #define REG_ASSERT 15 = #define REG_INVARG 16 + = #define REG_ILLSEQ 17 = #define REG_ATOI 255 // convert name to number (!) = #define REG_ITOA 0400 // convert number to name (!) */ @@ -105,6 +106,7 @@ static struct rerr { {REG_EMPTY, "REG_EMPTY", "empty (sub)expression"}, {REG_ASSERT, "REG_ASSERT", "\"can't happen\" -- you found a bug"}, {REG_INVARG, "REG_INVARG", "invalid argument to regex routine"}, + {REG_ILLSEQ, "REG_ILLSEQ", "illegal byte sequence"}, {0, "", "*** unknown regexp error code ***"} }; |