2011-02-12 00:22:29 -05:00
|
|
|
#include <string.h>
|
|
|
|
#include <regex.h>
|
2012-03-20 19:44:05 -04:00
|
|
|
#include <stdio.h>
|
2011-02-12 00:22:29 -05:00
|
|
|
|
|
|
|
/* Error message strings for error codes listed in `regex.h'. This list
|
|
|
|
needs to be in sync with the codes listed there, naturally. */
|
|
|
|
|
|
|
|
/* Converted to single string by Rich Felker to remove the need for
|
|
|
|
* data relocations at runtime, 27 Feb 2006. */
|
|
|
|
|
2012-03-20 19:44:05 -04:00
|
|
|
static const char messages[] = {
|
2011-02-12 00:22:29 -05:00
|
|
|
"No error\0"
|
|
|
|
"No match\0"
|
|
|
|
"Invalid regexp\0"
|
|
|
|
"Unknown collating element\0"
|
|
|
|
"Unknown character class name\0"
|
|
|
|
"Trailing backslash\0"
|
|
|
|
"Invalid back reference\0"
|
|
|
|
"Missing ']'\0"
|
|
|
|
"Missing ')'\0"
|
|
|
|
"Missing '}'\0"
|
|
|
|
"Invalid contents of {}\0"
|
|
|
|
"Invalid character range\0"
|
|
|
|
"Out of memory\0"
|
|
|
|
"XXX\0"
|
2012-03-20 19:44:05 -04:00
|
|
|
"\0Unknown error"
|
2011-02-12 00:22:29 -05:00
|
|
|
};
|
|
|
|
|
2012-03-20 19:44:05 -04:00
|
|
|
size_t regerror(int e, const regex_t *preg, char *buf, size_t size)
|
2011-02-12 00:22:29 -05:00
|
|
|
{
|
2012-03-20 19:44:05 -04:00
|
|
|
const char *s;
|
|
|
|
for (s=messages; e && *s; e--, e+=strlen(s)+1);
|
|
|
|
if (!*s) s++;
|
|
|
|
return 1+snprintf(buf, size, "%s", s);
|
2011-02-12 00:22:29 -05:00
|
|
|
}
|